Actions
Feature #67453
openEpic #92641: felogin feature collection
fe_login redirect modes on logout
Status:
New
Priority:
Should have
Assignee:
-
Category:
felogin
Target version:
-
Start date:
2015-06-15
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
Now on logout, one can only redirect to $this->conf['redirectPageLogout'].
As I need the same redirect-functionality as on Login, I had to duplicate the code from login to the switch starting from line 726
switch ($redirMethod) { case 'logout': if ($this->conf['redirectPageLogout']) { $redirect_url[] = $this->pi_getPageLink((int)$this->conf['redirectPageLogout']); } break;
Specially, the GET-/POST-variables where considered in my case:
case 'getpost': $redirect_url[] = $this->redirectUrl; break;
Maybe, these should be solved in a more general matter. Why the redirect methods are not considered identically on logout as on login?
Actions