mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
wrap log object in is_object
This commit is contained in:
parent
c332b62e15
commit
7e9bbeb3e9
13
logout.php
13
logout.php
@ -46,11 +46,14 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
$GLOBALS['phpgw']->log->write(array(
|
||||
'text' => 'W-VerifySession, could not verify session during logout',
|
||||
'line' => __LINE__,
|
||||
'file' => __FILE__
|
||||
));
|
||||
if(is_object($GLOBALS['phpgw']->log)
|
||||
{
|
||||
$GLOBALS['phpgw']->log->write(array(
|
||||
'text' => 'W-VerifySession, could not verify session during logout',
|
||||
'line' => __LINE__,
|
||||
'file' => __FILE__
|
||||
));
|
||||
}
|
||||
}
|
||||
Setcookie('sessionid');
|
||||
Setcookie('kp3');
|
||||
|
Loading…
Reference in New Issue
Block a user