mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-01-31 12:23:48 +01:00
UTF-8 safe public ban messages
This commit is contained in:
parent
fd407b871d
commit
61ea505557
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…
x
Reference in New Issue
Block a user