diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-01-26 13:38:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-01-26 13:38:46 +0000 |
commit | d386c110f449d39631c6af1aabced9799c7a372d (patch) | |
tree | 443ae8e3b5ac6680d5a25b26271ce02780b4a51e /cron.php | |
parent | 34a927e6e36c08522bd5b1a873d563e9da5bc7ab (diff) | |
download | brdo-d386c110f449d39631c6af1aabced9799c7a372d.tar.gz brdo-d386c110f449d39631c6af1aabced9799c7a372d.tar.bz2 |
- removed redundant spaces
Diffstat (limited to 'cron.php')
-rw-r--r-- | cron.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,12 +6,12 @@ function cron_run() { global $repository; $time = time(); - + $result = db_query("SELECT * FROM crons WHERE $time - timestamp > scheduled"); while ($task = db_fetch_object($result)) { if ($repository[$task->module]["cron"]) { - watchdog("message", "cron: executed '". $task->module ."_cron()'"); + watchdog("message", "cron: executed '". $task->module ."_cron()'"); $repository[$task->module]["cron"](); } } |