login destination does not take query array correctly
andykwg - August 17, 2008 - 13:21
| Project: | Login Destination |
| Version: | 6.x-2.1 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | postponed (maintainer needs more info) |
Jump to:
Description
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 {

#1
What is the right way to make this change to the code for submission?
#2
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?
#3