We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
yii2-admin/components/MenuHelper.php
Line 171 in e58b01b
So here is the example:
I created route like: order/index?status=open&day=today
but after parseRoute its returning array like:
url[0] = 'order/index?status=open' url['day'] = 'today'
So when I will pass it to my create url like: Yii::$app->urlManager->createUrl($menu['url']);
Yii::$app->urlManager->createUrl($menu['url']);
it will create URL like : order/index ? status=open ? day=today
whats expected is: order/index ? status=open & day=today
So current workaround is addind route like: order/index & status=open & day=today
The text was updated successfully, but these errors were encountered:
No branches or pull requests
yii2-admin/components/MenuHelper.php
Line 171 in e58b01b
So here is the example:
I created route like: order/index?status=open&day=today
but after parseRoute its returning array like:
So when I will pass it to my create url like:
Yii::$app->urlManager->createUrl($menu['url']);
it will create URL like : order/index ? status=open ? day=today
whats expected is: order/index ? status=open & day=today
So current workaround is addind route like: order/index & status=open & day=today
The text was updated successfully, but these errors were encountered: