From 00fd332aa5a59076901be763f17c6c8ded620101 Mon Sep 17 00:00:00 2001 From: svncommit Date: Fri, 14 Oct 2005 07:31:46 +0000 Subject: warning clearance --- index.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/index.php b/index.php index a044be72a..0c6a00f8c 100644 --- a/index.php +++ b/index.php @@ -55,7 +55,8 @@ ini_set('error_reporting', E_ALL&~E_NOTICE); // increase maximum execution time for php scripts -set_time_limit('120'); +// (does not work in safe mode) +@set_time_limit('120'); // include base files @@ -76,11 +77,9 @@ $_framed = (!empty($_GET['_framed']) || !empty($_POST['_framed'])); if (!empty($_GET['_remote'])) $REMOTE_REQUEST = TRUE; - // start session with requested task rcmail_startup($_task); - // set session related variables $COMM_PATH = sprintf('./?_auth=%s&_task=%s', $sess_auth, $_task); $SESS_HIDDEN_FIELD = sprintf('', $sess_auth); @@ -97,7 +96,6 @@ if ($_framed) // init necessary objects for GUI load_gui(); - // error steps if ($_action=='error' && !empty($_GET['_code'])) { @@ -129,7 +127,7 @@ if ($_action=='login' && $_task=='mail') } // end session -else if ($_action=='logout' && $_SESSION['user_id']) +else if ($_action=='logout' && isset($_SESSION['user_id'])) { show_message('loggedout'); rcmail_kill_session(); -- cgit v1.2.3