Skip to content

Commit 96b4c51

Browse files
author
Crosenhain
committed
Updated modules/backend_log/handler.php to reflect database logging changes in 0.25
1 parent 73fb3b2 commit 96b4c51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/backend_log/handler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
// Load the logs (remember that start and show are already safe for non-escaped usage)
2323
$Logs = array();
24-
$sh = $db->query('SELECT * FROM mythlog ORDER BY logid DESC LIMIT '.$_GET['start'].','.$_GET['show']);
24+
$sh = $db->query('SELECT * FROM logging ORDER BY id DESC LIMIT '.$_GET['start'].','.$_GET['show']);
2525
while ($row = $sh->fetch_assoc()) {
2626
$Logs[] = $row;
2727
}

0 commit comments

Comments
 (0)