forked from extern/egroupware
fix wired PHP Fatal error: Call to a member function commit_session on null, thought isset should stop that ...
This commit is contained in:
parent
d044e75c9c
commit
7bf6a497b0
@ -591,7 +591,7 @@ class egw extends egw_minimal
|
|||||||
}
|
}
|
||||||
// now we can close the session
|
// now we can close the session
|
||||||
// without closing the session fastcgi_finish_request() will NOT send output to user
|
// without closing the session fastcgi_finish_request() will NOT send output to user
|
||||||
if (isset($GLOBALS['egw']->session)) $GLOBALS['egw']->session->commit_session();
|
if (isset($GLOBALS['egw']->session) && is_object($GLOBALS['egw']->session)) $GLOBALS['egw']->session->commit_session();
|
||||||
|
|
||||||
// flush all output to user
|
// flush all output to user
|
||||||
/* does NOT work on Apache :-(
|
/* does NOT work on Apache :-(
|
||||||
|
Loading…
Reference in New Issue
Block a user