aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mod/crontrigger/start.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/crontrigger/start.php b/mod/crontrigger/start.php
index 92d388439..6cf6d7f71 100644
--- a/mod/crontrigger/start.php
+++ b/mod/crontrigger/start.php
@@ -65,6 +65,7 @@
$now = time();
+ ob_start();
run_function_once('crontrigger_minute', $now - $minute);
run_function_once('crontrigger_fiveminute', $now - $fiveminute);
run_function_once('crontrigger_fifteenmin', $now - $fifteenmin);
@@ -74,6 +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();
}