mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
72 lines
2.8 KiB
PHP
Executable File
72 lines
2.8 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare *
|
|
* http://www.phpgroupware.org *
|
|
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
|
* -------------------------------------------- *
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
* under the terms of the GNU General Public License as published by the *
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
$phpgw_flags["disable_message_class"] = True;
|
|
$phpgw_flags["disable_send_class"] = True;
|
|
$phpgw_flags["disable_nextmatchs_class"] = True;
|
|
$phpgw_flags["disable_template_class"] = True;
|
|
$phpgw_flags["currentapp"] = "logout";
|
|
$phpgw_flags["noheader"] = True;
|
|
|
|
include("header.inc.php");
|
|
|
|
$sep = $phpgw->common->filesystem_separator();
|
|
|
|
/*
|
|
if ($installed[cron_apps] != "Y") {
|
|
$dh = opendir($phpgw_info["server"]["temp_dir"]);
|
|
while ($dir = readdir($dh)) {
|
|
if ($dir != "." && $dir != "..") {
|
|
if (substr($dir,0,strlen(time())) <= (time() - 3600)) {
|
|
echo $phpgw_info["server"]["temp_dir"] . $sep . $dir;
|
|
$fh = opendir($phpgw_info["server"]["temp_dir"] . $sep . $dir);
|
|
while ($file = readdir($fh)) {
|
|
if ($file != "." && $file != "..") {
|
|
unlink($phpgw_info["server"]["temp_dir"] . $sep . $dir . $sep . $file);
|
|
}
|
|
}
|
|
rmdir($phpgw_info["server"]["temp_dir"] . $sep . $dir);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
if ($usercookie) {
|
|
Setcookie("sessionid",time() - 3);
|
|
Setcookie("kp3",time() - 3);
|
|
Setcookie("usercookie",time() - 3);
|
|
sleep(1); // Make SURE its expired in the browser.
|
|
|
|
}
|
|
|
|
|
|
if ($phpgw->session->verify($sessionid)) {
|
|
if (file_exists($phpgw_info["server"]["temp_dir"] . $sep . $phpgw->session->id)) {
|
|
$dh = opendir($phpgw_info["server"]["temp_dir"] . $sep . $phpgw->session->id);
|
|
while ($file = readdir($dh)) {
|
|
if ($file != "." && $file != "..") {
|
|
unlink($phpgw_info["server"]["temp_dir"] . $sep . $phpgw->session->id
|
|
. $sep . $file);
|
|
}
|
|
|
|
}
|
|
rmdir($phpgw_info["server"]["temp_dir"] . $sep . $phpgw->session->id);
|
|
}
|
|
$phpgw->session->destroy($phpgw->session->id);
|
|
$phpgw->db->query("delete from app_sessions where sessionid='" . $phpgw->session->id . "'");
|
|
}
|
|
|
|
Header("Location: " . $phpgw_info["server"]["webserver_url"] . "/login.php?cd=1");
|
|
?>
|