one more fix for error_reporting = E_ALL

This commit is contained in:
Ralf Becker 2004-03-14 08:22:29 +00:00
parent 2847d27af9
commit 11d640d2b4

View File

@ -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;