From 2c41fcdc0902279fd5c651a7ba08dbe7ba02d94b Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Fri, 27 Dec 2013 17:54:12 +0100 Subject: display max 10000 log entries (1000 before) --- includes/model/LogEntries_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/model/LogEntries_model.php b/includes/model/LogEntries_model.php index 30e2b58c..f7e464be 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 1000"); + return sql_select("SELECT * FROM `LogEntries` WHERE `timestamp` > " . (time() - 24 * 60 * 60) . " ORDER BY `timestamp` DESC LIMIT 10000"); } ?> \ No newline at end of file -- cgit v1.2.3-54-g00ecf