diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-29 11:25:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-29 11:25:02 +0000 |
commit | 43da1635b12567a466239c707243c15280c691de (patch) | |
tree | 9480593ce29c2fec1f531364d98604da7820fe22 /cron.php | |
parent | 81b21bc068d2a3d074bb78f51778b4edc91e55a2 (diff) | |
download | brdo-43da1635b12567a466239c707243c15280c691de.tar.gz brdo-43da1635b12567a466239c707243c15280c691de.tar.bz2 |
- Fixed bug #4842: get_cfg_var() -> ini_get()
Diffstat (limited to 'cron.php')
-rw-r--r-- | cron.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ include_once "includes/common.inc"; ** If not in 'safe mode', increase the maximum execution time: */ -if (!get_cfg_var("safe_mode")) { +if (!ini_get("safe_mode")) { set_time_limit(240); } |