Skip to content
Snippets Groups Projects
Commit 784e722d authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

negating a bugfix that was not a bug :) sorry

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1320 44740490-163a-0410-bde0-09ae8108e29a
parent 0910c240
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,9 @@ class sspmod_statistics_Aggregator { ...@@ -85,7 +85,9 @@ class sspmod_statistics_Aggregator {
$timeslot = $datehandler->toSlot($epoch, $rule['slot']); $timeslot = $datehandler->toSlot($epoch, $rule['slot']);
$fileslot = $datehandler->toSlot($epoch, $rule['fileslot']); //print_r($content); $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 . '...]'; $difcol = $content[$rule['col']]; // echo '[...' . $difcol . '...]';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment