prevent PHP Noticed: undefined index: menuaction

This commit is contained in:
Ralf Becker 2013-05-23 17:01:35 +00:00
parent 94bf204388
commit 6066cbaad4

View File

@ -85,7 +85,8 @@ $GLOBALS['egw_info']['server']['versions']['header'] = '1.29';
if(!isset($GLOBALS['egw_info']['flags']['noapi']) || !$GLOBALS['egw_info']['flags']['noapi']) if(!isset($GLOBALS['egw_info']['flags']['noapi']) || !$GLOBALS['egw_info']['flags']['noapi'])
{ {
if (substr($_SERVER['SCRIPT_NAME'],-7) != 'dav.php' && substr($_GET['menuaction'],-10) != '_hooks.log') // dont do it for webdav/groupdav, as we can not safely switch it off again if (substr($_SERVER['SCRIPT_NAME'],-7) != 'dav.php' && // dont do it for webdav/groupdav, as we can not safely switch it off again
(!isset($_GET['menuaction']) || substr($_GET['menuaction'],-10) != '_hooks.log'))
{ {
ob_start(); // to prevent error messages to be send before our headers ob_start(); // to prevent error messages to be send before our headers
} }