summaryrefslogtreecommitdiff
path: root/cron.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-12-29 11:25:02 +0000
committerDries Buytaert <dries@buytaert.net>2003-12-29 11:25:02 +0000
commit43da1635b12567a466239c707243c15280c691de (patch)
tree9480593ce29c2fec1f531364d98604da7820fe22 /cron.php
parent81b21bc068d2a3d074bb78f51778b4edc91e55a2 (diff)
downloadbrdo-43da1635b12567a466239c707243c15280c691de.tar.gz
brdo-43da1635b12567a466239c707243c15280c691de.tar.bz2
- Fixed bug #4842: get_cfg_var() -> ini_get()
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/cron.php b/cron.php
index d7e170820..f7c9d6adb 100644
--- a/cron.php
+++ b/cron.php
@@ -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);
}