I need to put variables in the link for controlling an exposed filter in the taxonomy term view.
But the ? is changed into %3F and the = into %3D.
Is there any solution to archieve this?

Comments

dhallennem’s picture

subscribing

dhallennem’s picture

The problem is due to an urlencode() function.
One solution but not perfect : just decode the url of the menu created.

On line 645 of taxonomyblocks.module :

        $menu = theme('menu_creation_by_array', $tree, $trail);
        $menu = urldecode($menu);

PS : I don't know why, but it doesn't work for the caracter & (code %26)