diff options
-rw-r--r-- | inc/changelog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/changelog.php b/inc/changelog.php index 5cb99f29b..570c48740 100644 --- a/inc/changelog.php +++ b/inc/changelog.php @@ -15,7 +15,7 @@ function parseChangelogLine($line) { $tmp = explode("\t", $line); if ($tmp!==false && count($tmp)>1) { $info = array(); - $info['date'] = $tmp[0]; // unix timestamp + $info['date'] = (int)$tmp[0]; // unix timestamp $info['ip'] = $tmp[1]; // IPv4 address (127.0.0.1) $info['type'] = $tmp[2]; // log line type $info['id'] = $tmp[3]; // page id |