From 784e722d48d3cdfa7d708d6679c60d54c05d2ebf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Tue, 24 Feb 2009 21:21:23 +0000
Subject: [PATCH] negating a bugfix that was not a bug :) sorry

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1320 44740490-163a-0410-bde0-09ae8108e29a
---
 modules/statistics/lib/Aggregator.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/modules/statistics/lib/Aggregator.php b/modules/statistics/lib/Aggregator.php
index 2c3be7c49..6a75354e0 100644
--- a/modules/statistics/lib/Aggregator.php
+++ b/modules/statistics/lib/Aggregator.php
@@ -85,7 +85,9 @@ class sspmod_statistics_Aggregator {
 			
 				$timeslot = $datehandler->toSlot($epoch, $rule['slot']);
 				$fileslot = $datehandler->toSlot($epoch, $rule['fileslot']); //print_r($content);
-				if (!isset($rule['action']) && ($action !== $rule['action'])) continue;
+				
+				if (isset($rule['action']) && ($action !== $rule['action'])) continue;
+				
 		
 				$difcol = $content[$rule['col']]; // echo '[...' . $difcol . '...]';
 		
-- 
GitLab