2000-08-18 05:24:22 +02:00
|
|
|
<?php
|
2001-03-31 13:43:14 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* 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$ */
|
|
|
|
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['phpgw_info'] = array();
|
|
|
|
$GLOBALS['phpgw_info']['flags'] = array(
|
2001-03-31 13:43:14 +02:00
|
|
|
'disable_template_class' => True,
|
|
|
|
'currentapp' => 'logout',
|
|
|
|
'noheader' => True,
|
|
|
|
'nofooter' => True,
|
|
|
|
'nonavbar' => True
|
|
|
|
);
|
|
|
|
|
|
|
|
include('./header.inc.php');
|
|
|
|
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['sessionid'] = $GLOBALS['HTTP_GET_VARS']['sessionid'] ? $GLOBALS['HTTP_GET_VARS']['sessionid'] : $GLOBALS['HTTP_COOKIE_VARS']['sessionid'];
|
|
|
|
$GLOBALS['kp3'] = $GLOBALS['HTTP_GET_VARS']['kp3'] ? $GLOBALS['HTTP_GET_VARS']['kp3'] : $GLOBALS['HTTP_COOKIE_VARS']['kp3'];
|
|
|
|
|
|
|
|
$verified = $GLOBALS['phpgw']->session->verify();
|
|
|
|
if ($verified)
|
2001-03-31 13:43:14 +02:00
|
|
|
{
|
2001-08-21 20:34:56 +02:00
|
|
|
if (file_exists($GLOBALS['phpgw_info']['server']['temp_dir'] . SEP . $GLOBALS['sessionid']))
|
2001-03-31 13:43:14 +02:00
|
|
|
{
|
2001-08-21 20:34:56 +02:00
|
|
|
$dh = opendir($GLOBALS['phpgw_info']['server']['temp_dir'] . SEP . $GLOBALS['sessionid']);
|
2001-03-31 13:43:14 +02:00
|
|
|
while ($file = readdir($dh))
|
|
|
|
{
|
|
|
|
if ($file != '.' && $file != '..')
|
|
|
|
{
|
2001-08-21 20:34:56 +02:00
|
|
|
unlink($GLOBALS['phpgw_info']['server']['temp_dir'] . SEP . $GLOBALS['sessionid'] . SEP . $file);
|
2001-03-31 13:43:14 +02:00
|
|
|
}
|
|
|
|
}
|
2001-08-21 20:34:56 +02:00
|
|
|
rmdir($GLOBALS['phpgw_info']['server']['temp_dir'] . SEP . $GLOBALS['sessionid']);
|
2001-03-31 13:43:14 +02:00
|
|
|
}
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['phpgw']->common->hook('logout');
|
2001-09-28 23:40:45 +02:00
|
|
|
$GLOBALS['phpgw']->session->destroy($GLOBALS['sessionid'],$GLOBALS['kp3']);
|
2001-03-31 13:43:14 +02:00
|
|
|
}
|
2001-08-05 11:19:08 +02:00
|
|
|
else
|
|
|
|
{
|
2001-09-28 23:40:45 +02:00
|
|
|
$GLOBALS['phpgw']->log->write(array(
|
|
|
|
'text' => 'W-VerifySession, could not verify session during logout',
|
|
|
|
'line' => __LINE__,
|
|
|
|
'file' => __FILE__
|
|
|
|
));
|
2001-08-05 11:19:08 +02:00
|
|
|
}
|
2001-03-31 13:43:14 +02:00
|
|
|
Setcookie('sessionid');
|
|
|
|
Setcookie('kp3');
|
|
|
|
Setcookie('domain');
|
|
|
|
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw_info']['server']['webserver_url'].'/login.php?cd=1');
|
2001-09-28 23:40:45 +02:00
|
|
|
?>
|