Skip to content
Snippets Groups Projects
Commit ff6d3671 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Fix for issue #598 (bug in statistics aggregator)

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3317 44740490-163a-0410-bde0-09ae8108e29a
parent f0f2f459
No related merge requests found
......@@ -77,7 +77,9 @@ class sspmod_statistics_Aggregator {
throw new Exception('Statistics module: input file do not exists [' . $this->inputfile . ']');
$file = fopen($this->inputfile, 'r');
#$logfile = file($this->inputfile, FILE_IGNORE_NEW_LINES );
if ($file === FALSE)
throw new Exception('Statistics module: unable to open file [' . $this->inputfile . ']');
$logparser = new sspmod_statistics_LogParser(
$this->statconfig->getValue('datestart', 0), $this->statconfig->getValue('datelength', 15), $this->statconfig->getValue('offsetspan', 44)
......
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