summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2005-10-14 07:31:46 +0000
committersvncommit <devs@roundcube.net>2005-10-14 07:31:46 +0000
commit00fd332aa5a59076901be763f17c6c8ded620101 (patch)
tree51c349b3859773d0a699c27091fe42a9265bbd50 /index.php
parent61bda79eead5b39cac87b98183088e03022ce51a (diff)
warning clearance
Diffstat (limited to 'index.php')
-rw-r--r--index.php8
1 files 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('<input type="hidden" name="_auth" value="%s" />', $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();