In urllogin.inc line 300 there is an issue that prevented proper redirection after login.
there is a variable assignement instead of a comparison
if ($uid = -2) {
had to be changed to
if ($uid == -2) {
probably just a typo.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | redirect.patch | 497 bytes | owen barton |
Comments
Comment #1
andrewfn commentedThanks for spotting that! I will correct it right away.
Comment #2
owen barton commentedHere is a patch for the above code - tested and it seems to work fine, so RTBC.
Comment #3
andrewfn commentedThanks very much!
I have applied the fix to the 6.x version as well.