Clear out old expired sessions on log out.

Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
Loui Chang 2008-11-13 15:18:48 -05:00
parent 53bb32a15a
commit cf2a82fe85
2 changed files with 16 additions and 7 deletions

View file

@ -3,7 +3,7 @@
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR . '../lang');
include("aur.inc"); # access AUR common functions
include("pkgfuncs_po.inc"); # Add to handle the i18n of My Packages
include_once("acctfuncs.inc"); # access AUR common functions
include("logout_po.inc"); # use some form of this for i18n support
set_lang(); # this sets up the visitor's language
@ -19,8 +19,7 @@ if (isset($_COOKIE["AURSID"])) {
setcookie("AURLANG", "", time() - (60*60*24*30), "/");
}
header('Location: index.php');
exit;
clear_expired_sessions();
header('Location: index.php');
html_footer(AUR_VERSION);
?>