From 9ecb489adb4e5546316d8b4643ce3b730fe92e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Wed, 25 Feb 2009 11:22:09 +0000 Subject: [PATCH] Storing results file in cron hook... forgot this yesterday.. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1324 44740490-163a-0410-bde0-09ae8108e29a --- modules/statistics/hooks/hook_cron.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/statistics/hooks/hook_cron.php b/modules/statistics/hooks/hook_cron.php index e566b3236..87d599078 100644 --- a/modules/statistics/hooks/hook_cron.php +++ b/modules/statistics/hooks/hook_cron.php @@ -18,6 +18,11 @@ function statistics_hook_cron(&$croninfo) { try { $aggregator = new sspmod_statistics_Aggregator(); $results = $aggregator->aggregate(); + if (empty($results)) { + $croninfo['summary'][] = 'Output from statistics aggregator was empty.'; + } else { + $aggregator->store($results); + } } catch (Exception $e) { $croninfo['summary'][] = 'Loganalyzer threw exception: ' . $e->getMessage(); } -- GitLab