From 649cc19cfc0be218719e106680eba908bbb3d583 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 17 Sep 2012 14:22:44 +0200 Subject: Fix HTML special characters handling in message list/header display (#1488523) --- program/include/rcube_utils.php | 3 --- 1 file changed, 3 deletions(-) (limited to 'program') diff --git a/program/include/rcube_utils.php b/program/include/rcube_utils.php index b278431a6..bf2b0db54 100644 --- a/program/include/rcube_utils.php +++ b/program/include/rcube_utils.php @@ -250,9 +250,6 @@ class rcube_utils $out = strtr($str, $encode_arr); - // avoid douple quotation of & - $out = preg_replace('/&([A-Za-z]{2,6}|#[0-9]{2,4});/', '&\\1;', $out); - return $newlines ? nl2br($out) : $out; } -- cgit v1.2.3