From 82e3592703f50869d589839f7d4d1bf763852b51 Mon Sep 17 00:00:00 2001 From: Macil Tech Date: Tue, 25 Jun 2013 12:13:17 -0500 Subject: [PATCH] Argh, just remove all RTL and LTR control codes in bidi_cleanup. If the name and subject fields both start with RLO characters, then the subject would be after the name with the old bidi_cleanup. --- inc/display.php | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/inc/display.php b/inc/display.php index 5395edcc..2021dc8f 100644 --- a/inc/display.php +++ b/inc/display.php @@ -214,7 +214,7 @@ function truncate($body, $url, $max_lines = false, $max_chars = false) { } function bidi_cleanup($str){ - # Closes all embedded RTL and LTR unicode formatting blocks in a string so that + # Removes all embedded RTL and LTR unicode formatting blocks in a string so that # it can be used inside another without controlling its direction. # More info: http://www.iamcal.com/understanding-bidirectional-text/ # @@ -228,21 +228,7 @@ function bidi_cleanup($str){ $explicits = '\xE2\x80\xAA|\xE2\x80\xAB|\xE2\x80\xAD|\xE2\x80\xAE'; $pdf = '\xE2\x80\xAC'; - $stack = 0; - $str = preg_replace_callback("!(?$explicits)|(?$pdf)!", function($match) use (&$stack) { - if (isset($match['explicits']) && $match['explicits']) { - $stack++; - } else { - if ($stack) - $stack--; - else - return ''; - } - return $match[0]; - }, $str); - for ($i=0; $i<$stack; $i++){ - $str .= "\xE2\x80\xAC"; - } + $str = preg_replace("!(?$explicits)|(?$pdf)!", '', $str); return $str; }