display max 10000 log entries (1000 before)

This commit is contained in:
Philip Häusler 2013-12-27 17:54:12 +01:00
parent c063d8aac4
commit 2c41fcdc09
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}
?>