From 9edbf0e3431dea438524206242a82c5b50457714 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Mon, 6 Jun 2011 21:41:05 +1000 Subject: [PATCH] ... --- inc/functions.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index 8f7370bc..790e0783 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -1433,8 +1433,7 @@ if ( ( function_exists ( 'mb_convert_encoding' ) ) ) { // multi-byte encoding is necessary to produce standard tripcode output, but only use it if available mb_substitute_character('none'); - // $trip is now properly encoded - $trip = mb_convert_encoding ( $trip, 'Shift_JIS', 'UTF-8' ); + $recoded_cap = mb_convert_encoding ( $trip, 'Shift_JIS', 'UTF-8' ); } $trip = ( ( ! empty ( $recoded_cap ) ) ? $recoded_cap : $trip ); $salt = substr ( $trip.'H.', 1, 2 );