summaryrefslogtreecommitdiff
path: root/cron.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-08-12 18:00:11 +0000
committerDries Buytaert <dries@buytaert.net>2004-08-12 18:00:11 +0000
commit0f088b79ca2fefb4aa92b91cee1d32e162a3dfaf (patch)
treeb96ef3d826688f6669eb9d23b12db48947339f3c /cron.php
parentc1ca7c326f574d83085fb052ea1f2d6249d3832e (diff)
downloadbrdo-0f088b79ca2fefb4aa92b91cee1d32e162a3dfaf.tar.gz
brdo-0f088b79ca2fefb4aa92b91cee1d32e162a3dfaf.tar.bz2
- Patch #9983 by Stefan: various code style improvements.
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/cron.php b/cron.php
index e6ecba6f1..31790bca8 100644
--- a/cron.php
+++ b/cron.php
@@ -1,11 +1,11 @@
<?php
// $Id$
-include_once "includes/bootstrap.inc";
-include_once "includes/common.inc";
+include_once 'includes/bootstrap.inc';
+include_once 'includes/common.inc' ;
// If not in 'safe mode', increase the maximum execution time:
-if (!ini_get("safe_mode")) {
+if (!ini_get('safe_mode')) {
set_time_limit(240);
}