diff --git a/reference/session/functions/session-destroy.xml b/reference/session/functions/session-destroy.xml index 5d403824d7..ed69087d62 100644 --- a/reference/session/functions/session-destroy.xml +++ b/reference/session/functions/session-destroy.xml @@ -52,11 +52,11 @@ $_SESSION = array(); // If it's desired to kill the session, also delete the session cookie. // Note: This will destroy the session, and not just the session data! if (ini_get("session.use_cookies")) { - $params = session_get_cookie_params(); - setcookie(session_name(), '', time() - 42000, - $params["path"], $params["domain"], - $params["secure"], $params["httponly"] - ); + $params = session_get_cookie_params(); + setcookie(session_name(), '', time() - 42000, + $params["path"], $params["domain"], + $params["secure"], $params["httponly"] + ); } // Finally, destroy the session.