Index: branches/5.0.x/core/units/users/users_event_handler.php =================================================================== diff -u -N -r13121 -r13250 --- branches/5.0.x/core/units/users/users_event_handler.php (.../users_event_handler.php) (revision 13121) +++ branches/5.0.x/core/units/users/users_event_handler.php (.../users_event_handler.php) (revision 13250) @@ -1,6 +1,6 @@ Application->recallObject($prefix_special, null, Array('skip_autoload' => true)); $next_template = $this->Application->GetVar('next_template'); - if ($next_template == '_ses_redirect') { - $location = $this->Application->BaseURL().$this->Application->RecallVar($next_template); - if( $this->Application->isDebugMode() && constOn('DBG_REDIRECT') ) - { - $this->Application->Debugger->appendTrace(); - echo "Debug output above!!! Proceed to redirect: $location
"; - } - else { - header('Location: '.$location); - } - $session =& $this->Application->recallObject('Session'); - $session->SaveData(); - exit; - } - if ($next_template) { $event->redirect = $next_template; }