Closed (fixed)
Project:
CAS
Version:
6.x-2.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
10 Mar 2011 at 13:46 UTC
Updated:
24 Mar 2011 at 16:31 UTC
Even if I don't give any url on the "Initial login landing page" of Redirection settings section, user is redirected to his user page, while the user should be redirected to the url on where he was before the logging cas operation.
I think there is bug in the line 799 of the cas.module, it should miss a "=" on the second part of the if code :
if ($destination == 'user/login' || $destination = 'user/register') {
The redirection is OK and user goes to the previous page when the "=" is added :
if ($destination == 'user/login' || $destination == 'user/register') {
Comments
Comment #1
metzlerd commentedCorrect this was fixed in later versions. I'll go ahead and commit this one to the 6.x-2.x-dev branch.
Comment #2
metzlerd commentedWill correct in 6.x-2.3.