diff options
author | svncommit <devs@roundcube.net> | 2007-03-04 12:47:45 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2007-03-04 12:47:45 +0000 |
commit | 024797706f972e849c7a480c99e5a1d9e673c380 (patch) | |
tree | c4502f7119a1e5a479a5c04bc03d7220aab3eed2 | |
parent | 7bbd5f64744a5eba869ee01d15e3a425b73e4f60 (diff) |
check if safe mode is on or not
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | index.php | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ CHANGELOG RoundCube Webmail --------------------------- +2007/03/04 (tomekp) +- check if safe mode is on or not (closes #1484269) + 2007/03/02 (thomasb) ---------- - Show "no subject" in message list if subject is missing (closes #1484243) @@ -73,7 +73,7 @@ ini_set('error_reporting', E_ALL&~E_NOTICE); // increase maximum execution time for php scripts // (does not work in safe mode) -@set_time_limit(120); +if (!ini_get('safe_mode')) @set_time_limit(120); // include base files require_once('include/rcube_shared.inc'); |