diff options
author | canyonknight <canyonknight@gmail.com> | 2012-05-23 21:29:02 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-06 11:26:59 +0200 |
commit | f93f1a652ffec5cca0f9bdfb7895a5439382bd2a (patch) | |
tree | 3ae76c9ab2f545a9f1eed2924d0abecdaca41894 /web/html | |
parent | d3de6679010a1d140794305e747f1af0e7f21834 (diff) | |
download | aur-f93f1a652ffec5cca0f9bdfb7895a5439382bd2a.tar.gz aur-f93f1a652ffec5cca0f9bdfb7895a5439382bd2a.tar.xz |
logout.php: Pull out DB code
* Move DB code for removing a session in logout.php to a new function in
acctfuncs.inc.php
* Add ability for clear_expired_sessions function to check for DB connection
* Centralization of DB code important in a future transition to PDO interface
Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/logout.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/html/logout.php b/web/html/logout.php index e51eeb92..fe8ffb01 100644 --- a/web/html/logout.php +++ b/web/html/logout.php @@ -10,10 +10,10 @@ include_once("acctfuncs.inc.php"); # access AUR common functions # sending any HTML output. # if (isset($_COOKIE["AURSID"])) { - $dbh = db_connect(); - $q = "DELETE FROM Sessions WHERE SessionID = '"; - $q.= db_escape_string($_COOKIE["AURSID"]) . "'"; - db_query($q, $dbh); + if (!$dbh) { + $dbh = db_connect(); + } + delete_session_id($_COOKIE["AURSID"], $dbh); # setting expiration to 1 means '1 second after midnight January 1, 1970' setcookie("AURSID", "", 1, "/", null, !empty($_SERVER['HTTPS']), true); unset($_COOKIE['AURSID']); |