You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have found a possible bug in the pagebrowser. On line 314 you have this line:
$additionalParams = urldecode($this->cObj->getQueryArguments($queryConf));
I use the extension in combination with the SOLR extension. If someone searches for a string with an & in it, it gets encoded correctly the first time. If I click to the next page, the %26 in the URL is changed by the urldecode to an & and the query is no longer correct. If I remove the urldecode function, everything works as expected.
What is the reason of the urldecode function?
Thanks!
Best regards,
Hielke Jager
WIND Internet
The text was updated successfully, but these errors were encountered:
Hello Dmitry,
I have found a possible bug in the pagebrowser. On line 314 you have this line:
$additionalParams = urldecode($this->cObj->getQueryArguments($queryConf));
I use the extension in combination with the SOLR extension. If someone searches for a string with an & in it, it gets encoded correctly the first time. If I click to the next page, the %26 in the URL is changed by the urldecode to an & and the query is no longer correct. If I remove the urldecode function, everything works as expected.
What is the reason of the urldecode function?
Thanks!
Best regards,
Hielke Jager
WIND Internet
The text was updated successfully, but these errors were encountered: