From: Jason S. <jsw...@ya...> - 2003-05-05 02:44:59
|
At a bare minimum, I think you need to issue an exit; after the header() to redirect. I would alter the ActionContoller::_processForward() to one of the following: function _processForward($actionForward) { $redirect = $actionForward->getRedirect(); $path = $actionForward->getPath(); if (!$redirect) { header("Location: $path&".SID); exit; } else { $_SESSION = array(); session_destroy(); header("Location: $path"); exit; } } or function _processForward($actionForward) { $redirect = $actionForward->getRedirect(); $path = $actionForward->getPath(); if (!$redirect) { header("Location: $path&".SID); } else { $_SESSION = array(); session_destroy(); header("Location: $path"); } exit; } __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com |