Just an aesthetic fix for the ampersand, the exit is
important for not accidentally processing after the
forward:
in ActionController.php
function _processForward(&$actionForward)
{
$redirect = $actionForward->getRedirect();
$path = $actionForward->getPath();
if (!$redirect) {
$sid = (SID) ? '&'.SID : '':
header("Location: $path$sid");
} else {
$_SESSION = array();
session_destroy();
header("Location: $path");
}
exit;
}
Logged In: YES
user_id=555352
typo in the original post
should be
$sid = (SID) ? '&'.SID : '';
; at the end instead of :