From e6ecdcc835e9a612e5c5842867c01f0efdceb789 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 21 Oct 2011 16:03:40 -0500 Subject: Require DB handle for most user account functions This affects login the most, where we save about 4 calls to db_connect() by passing a single handle into functions where necessary. Signed-off-by: Dan McGee Signed-off-by: Lukas Fleischer --- web/html/logout.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'web/html/logout.php') diff --git a/web/html/logout.php b/web/html/logout.php index 1cdf453..9d0e7a9 100644 --- a/web/html/logout.php +++ b/web/html/logout.php @@ -17,9 +17,8 @@ if (isset($_COOKIE["AURSID"])) { # setting expiration to 1 means '1 second after midnight January 1, 1970' setcookie("AURSID", "", 1, "/", null, !empty($_SERVER['HTTPS']), true); unset($_COOKIE['AURSID']); + clear_expired_sessions($dbh); } -clear_expired_sessions(); - header('Location: index.php'); -- cgit v1.2.3-54-g00ecf