replaced tabs with spaces

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@291738 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Martin Samesch 2009-12-05 13:54:50 +00:00
parent 4c26df03fa
commit 1178d97c08

View file

@ -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.