diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-05 10:22:55 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-05 10:22:55 +0000 |
commit | 740f3190bb04eae6f87a87cc6ad027593c09f726 (patch) | |
tree | 6a0b20dcfef0d6d24eaf20136941e51c11d1d299 /mod/crontrigger/start.php | |
parent | 0c7e9ac803bc554d88f4ae88bebfb9e27a77f7ff (diff) | |
download | elgg-740f3190bb04eae6f87a87cc6ad027593c09f726.tar.gz elgg-740f3190bb04eae6f87a87cc6ad027593c09f726.tar.bz2 |
Surpressing cron output
git-svn-id: https://code.elgg.org/elgg/trunk@3088 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/crontrigger/start.php')
-rw-r--r-- | mod/crontrigger/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/crontrigger/start.php b/mod/crontrigger/start.php index 6cf6d7f71..963c749df 100644 --- a/mod/crontrigger/start.php +++ b/mod/crontrigger/start.php @@ -75,7 +75,7 @@ run_function_once('crontrigger_weekly', $now - $week); run_function_once('crontrigger_monthly', $now - $month); run_function_once('crontrigger_yearly', $now - $year); - ob_flush(); + ob_clean(); } |