Improvements to showing post in ban
This commit is contained in:
parent
3471f7c668
commit
57e4292e9d
@ -634,7 +634,12 @@ function displayBan($ban) {
|
|||||||
$ban['post']['file'] = 'deleted';
|
$ban['post']['file'] = 'deleted';
|
||||||
$ban['post']['thumb'] = false;
|
$ban['post']['thumb'] = false;
|
||||||
}
|
}
|
||||||
$post = new Post($ban['post']);
|
|
||||||
|
if ($ban['post']['thread']) {
|
||||||
|
$post = new Post($ban['post']);
|
||||||
|
} else {
|
||||||
|
$post = new Thread($ban['post'], null, false, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Show banned page and exit
|
// Show banned page and exit
|
||||||
die(
|
die(
|
||||||
@ -645,7 +650,8 @@ function displayBan($ban) {
|
|||||||
'body' => Element('banned.html', array(
|
'body' => Element('banned.html', array(
|
||||||
'config' => $config,
|
'config' => $config,
|
||||||
'ban' => $ban,
|
'ban' => $ban,
|
||||||
'post' => isset($post) ? $post->build() : false
|
'board' => $board,
|
||||||
|
'post' => isset($post) ? $post->build(true) : false
|
||||||
)
|
)
|
||||||
))
|
))
|
||||||
));
|
));
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
|
|
||||||
{% if post %}
|
{% if post %}
|
||||||
<hr>
|
<hr>
|
||||||
<p>You were banned for the following post:</p>
|
<p>You were banned for the following post on {{ board.url }}:</p>
|
||||||
{{ post }}
|
{{ post }}
|
||||||
<br>
|
<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user