Fix displaying bans
This commit is contained in:
parent
0da65c3d7b
commit
9b3f8421fc
@ -689,22 +689,15 @@ function displayBan($ban) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$ban['ip'] = $_SERVER['REMOTE_ADDR'];
|
$ban['ip'] = $_SERVER['REMOTE_ADDR'];
|
||||||
|
|
||||||
if ($ban['post'] && isset($ban['post']['board'], $ban['post']['id'])) {
|
if ($ban['post'] && isset($ban['post']['board'], $ban['post']['id'])) {
|
||||||
if (openBoard($ban['post']['board'])) {
|
if (openBoard($ban['post']['board'])) {
|
||||||
|
$query = query(sprintf("SELECT `files` FROM ``posts_%s`` WHERE `id` = " .
|
||||||
$query = query(sprintf("SELECT `thumb`, `file` FROM ``posts_%s`` WHERE `id` = " .
|
|
||||||
(int)$ban['post']['id'], $board['uri']));
|
(int)$ban['post']['id'], $board['uri']));
|
||||||
if ($_post = $query->fetch(PDO::FETCH_ASSOC)) {
|
if ($_post = $query->fetch(PDO::FETCH_ASSOC)) {
|
||||||
$ban['post'] = array_merge($ban['post'], $_post);
|
$ban['post'] = array_merge($ban['post'], $_post);
|
||||||
} else {
|
|
||||||
$ban['post']['file'] = 'deleted';
|
|
||||||
$ban['post']['thumb'] = false;
|
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
$ban['post']['file'] = 'deleted';
|
|
||||||
$ban['post']['thumb'] = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($ban['post']['thread']) {
|
if ($ban['post']['thread']) {
|
||||||
$post = new Post($ban['post']);
|
$post = new Post($ban['post']);
|
||||||
} else {
|
} else {
|
||||||
|
@ -83,7 +83,7 @@
|
|||||||
|
|
||||||
{% if post and config.ban_show_post %}
|
{% if post and config.ban_show_post %}
|
||||||
<hr>
|
<hr>
|
||||||
<p>{% trans %}You were banned for the following post on {% endtrans %}{{ board.url }}:</p>
|
<p>{% trans %}You were banned for the following post on{% endtrans %} {{ board.url }}:</p>
|
||||||
{{ post }}
|
{{ post }}
|
||||||
<br>
|
<br>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -133,4 +133,4 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endfilter %}
|
{% endfilter %}
|
||||||
|
Loading…
Reference in New Issue
Block a user