Posted by creando sensaciones on May 12, 2011 at 7:30pm
2 followers
Jump to:
| Project: | Advanced Taxonomy Blocks |
| Version: | 6.x-3.5 |
| Component: | Miscellaneous |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
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
#1
subscribing
#2
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)