Browse Source

UTF-8 safe public ban messages

pull/40/head
Savetheinternet 13 years ago
parent
commit
6e806e3520
  1. 2
      mod.php

2
mod.php

@ -2003,7 +2003,7 @@
$query = prepare(sprintf("UPDATE `posts_%s` SET `body` = CONCAT(`body`, :body) WHERE `id` = :id", $board['uri']));
$query->bindValue(':id', $post, PDO::PARAM_INT);
$query->bindValue(':body', sprintf($config['mod']['ban_message'], htmlentities($_POST['message'])));
$query->bindValue(':body', sprintf($config['mod']['ban_message'], utf8tohtml($_POST['message'])));
$query->execute() or error(db_error($query));
// Rebuild thread

Loading…
Cancel
Save