From 31b9efd51d5baf17e4100831c34c111aca16e412 Mon Sep 17 00:00:00 2001 From: 8chan Date: Tue, 5 May 2015 22:42:05 -0700 Subject: [PATCH] Fix bad UTF8 handling on boards page, it's already stored escaped in the DB... --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 045cf81b..a9b7e373 100755 --- a/inc/functions.php +++ b/inc/functions.php @@ -986,7 +986,7 @@ function fetchBoardTags( $uris ) { $boardTags[ $tagRow['uri'] ] = array(); } - $boardTags[ $tagRow['uri'] ][] = htmlentities( utf8_encode( $tag ) ); + $boardTags[ $tagRow['uri'] ][] = $tag; } }