Browse Source

paginate moderation log

pull/40/head
Michael Save 12 years ago
parent
commit
d1876a0dd6
  1. 6
      inc/mod/pages.php
  2. 2
      mod.php
  3. 6
      templates/mod/log.html

6
inc/mod/pages.php

@ -79,7 +79,11 @@ function mod_log($page_no = 1) {
$query->execute() or error(db_error($query));
$logs = $query->fetchAll(PDO::FETCH_ASSOC);
mod_page('Moderation log', 'mod/log.html', array('logs' => $logs));
$query = prepare("SELECT COUNT(*) AS `count` FROM `modlogs`");
$query->execute() or error(db_error($query));
$count = $query->fetchColumn(0);
mod_page('Moderation log', 'mod/log.html', array('logs' => $logs, 'count' => $count));
}
function mod_view_board($boardName, $page_no = 1) {

2
mod.php

@ -24,7 +24,7 @@ $pages = array(
'!^$!' => ':?/', // redirect to dashboard
'!^/$!' => 'dashboard', // dashboard
'!^/log$!' => 'log', // modlog
'!^/log/(\d+)/$!' => 'log', // modlog
'!^/log/(\d+)$!' => 'log', // modlog
'!^/confirm/(.+)$!' => 'confirm', // confirm action (if javascript didn't work)

6
templates/mod/log.html

@ -31,3 +31,9 @@
{% endfor %}
</table>
<p class="unimportant" style="text-align:center;word-wrap:break-word">
{% for i in range(0, count / config.mod.modlog_page) %}
<a href="?/log/{{ i + 1 }}">[{{ i + 1 }}]</a>
{% endfor %}
</p>

Loading…
Cancel
Save