mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
one more fix for error_reporting = E_ALL
This commit is contained in:
parent
2847d27af9
commit
11d640d2b4
@ -18,7 +18,7 @@
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['sessionid'] = isset($_GET['sessionid']) ? $_GET['sessionid'] : $_COOKIE['sessionid'];
|
$GLOBALS['sessionid'] = isset($_GET['sessionid']) ? $_GET['sessionid'] : @$_COOKIE['sessionid'];
|
||||||
if(!$GLOBALS['sessionid'])
|
if(!$GLOBALS['sessionid'])
|
||||||
{
|
{
|
||||||
Header('Location: login.php');
|
Header('Location: login.php');
|
||||||
@ -28,9 +28,9 @@
|
|||||||
/*
|
/*
|
||||||
This is the menuaction driver for the multi-layered design
|
This is the menuaction driver for the multi-layered design
|
||||||
*/
|
*/
|
||||||
if(@isset($_GET['menuaction']))
|
if(isset($_GET['menuaction']))
|
||||||
{
|
{
|
||||||
list($app,$class,$method) = explode('.',$_GET['menuaction']);
|
list($app,$class,$method) = explode('.',@$_GET['menuaction']);
|
||||||
if(! $app || ! $class || ! $method)
|
if(! $app || ! $class || ! $method)
|
||||||
{
|
{
|
||||||
$invalid_data = True;
|
$invalid_data = True;
|
||||||
|
Loading…
Reference in New Issue
Block a user