prevent PHP Noticed: undefined index: menuaction

This commit is contained in:
Ralf Becker 2013-05-23 17:01:54 +00:00
parent c4004a22b6
commit 0467ec13ec

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 (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
}