diff --git a/modules/statistics/lib/LogParser.php b/modules/statistics/lib/LogParser.php
index 5d1ff70df7397a6f7a4ad44a27b9d19a99c648f2..a0e1447671a80e46fd3a4f8c46c4cad863378f3b 100644
--- a/modules/statistics/lib/LogParser.php
+++ b/modules/statistics/lib/LogParser.php
@@ -25,6 +25,21 @@ class sspmod_statistics_LogParser {
 
 	public function parseEpoch($line) {
 		$epoch = strtotime(substr($line, 0, $this->datelength));
+		if ($epoch > time() + 60*60*24*31) {
+			/*
+			 * More than a month in the future - probably caused by
+			 * the log files missing the year.
+			 * We will therefore subtrackt one year.
+			 */
+			$hour = gmdate('H', $epoch);
+			$minute = gmdate('i', $epoch);
+			$second = gmdate('s', $epoch);
+			$month = gmdate('n', $epoch);
+			$day = gmdate('j', $epoch);
+			$year = gmdate('Y', $epoch) - 1;
+			$epoch = gmmktime($hour, $minute, $second, $month, $day, $year);
+		}
+
 // 		echo 'debug   ' . $line . "\n";
 // 		echo 'debug   [' . substr($line, 0, $this->datelength)  . '] => [' . $epoch . ']' . "\n";
 		return $epoch;