Maybe this is just a typo. The query string has an extra '='.

WAS:
if (is_array($url)) {
$url = $url['path'] . "?=" . $url['query'];
} else {
Should be:
if (is_array($url)) {
$url = $url['path'] . "?" . $url['query'];
} else {

Comments

andykwg’s picture

What is the right way to make this change to the code for submission?

rsvelko’s picture

Priority: Critical » Normal

on which line and in which release do u find these things?

please tell me - I cannot find them.

Currently I released the 2.5 release which fixes some bugs - does it work ok for you?

rsvelko’s picture

Status: Active » Postponed (maintainer needs more info)
rsvelko’s picture

Status: Postponed (maintainer needs more info) » Fixed

the new 2.6 (and the last 2.5 does not have those) - so fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.