From 9125f7e5ab964accd7d4a9e54ec7329c34406e5f Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Mon, 15 Dec 2014 19:07:53 +0100 Subject: show 10000 log entries --- includes/model/LogEntries_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/model/LogEntries_model.php b/includes/model/LogEntries_model.php index f7e464be..49e063dc 100644 --- a/includes/model/LogEntries_model.php +++ b/includes/model/LogEntries_model.php @@ -15,7 +15,7 @@ function LogEntry_create($nick, $message) { * Returns log entries of the last 24 hours with maximum count of 1000. */ function LogEntries() { - return sql_select("SELECT * FROM `LogEntries` WHERE `timestamp` > " . (time() - 24 * 60 * 60) . " ORDER BY `timestamp` DESC LIMIT 10000"); + return sql_select("SELECT * FROM `LogEntries` ORDER BY `timestamp` DESC LIMIT 10000"); } ?> \ No newline at end of file -- cgit v1.2.3-54-g00ecf