1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-21 21:19:36 +01:00

Fix bad UTF8 handling on boards page, it's already stored escaped in the DB...

This commit is contained in:
8chan 2015-05-05 22:42:05 -07:00
parent 8dd8f9390e
commit 31b9efd51d

View File

@ -986,7 +986,7 @@ function fetchBoardTags( $uris ) {
$boardTags[ $tagRow['uri'] ] = array();
}
$boardTags[ $tagRow['uri'] ][] = htmlentities( utf8_encode( $tag ) );
$boardTags[ $tagRow['uri'] ][] = $tag;
}
}