Browse Source

Improvements to showing post in ban

pull/40/head
Michael Foster 11 years ago
parent
commit
57e4292e9d
  1. 8
      inc/functions.php
  2. 2
      templates/banned.html

8
inc/functions.php

@ -634,7 +634,12 @@ function displayBan($ban) {
$ban['post']['file'] = 'deleted';
$ban['post']['thumb'] = false;
}
if ($ban['post']['thread']) {
$post = new Post($ban['post']);
} else {
$post = new Thread($ban['post'], null, false, false);
}
}
// Show banned page and exit
die(
@ -645,7 +650,8 @@ function displayBan($ban) {
'body' => Element('banned.html', array(
'config' => $config,
'ban' => $ban,
'post' => isset($post) ? $post->build() : false
'board' => $board,
'post' => isset($post) ? $post->build(true) : false
)
))
));

2
templates/banned.html

@ -79,7 +79,7 @@
{% if post %}
<hr>
<p>You were banned for the following post:</p>
<p>You were banned for the following post on {{ board.url }}:</p>
{{ post }}
<br>
{% endif %}

Loading…
Cancel
Save