From d663eed8a5714c4a4d027771862e4a0783babc26 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 9 Feb 2011 22:06:08 +0100 Subject: [PATCH] Update plugins --- plugins/tinymce.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tinymce.php b/plugins/tinymce.php index 80cd5974..ed97b22b 100644 --- a/plugins/tinymce.php +++ b/plugins/tinymce.php @@ -17,7 +17,7 @@ class AdminerTinymce { function selectVal(&$val, $link, $field) { if (ereg("_html", $field["field"]) && $val != ' ') { - $val = preg_replace('~<[^>]*$~', '', html_entity_decode($val, ENT_QUOTES, 'utf-8')); //! close all opened tags (text can be shortened) + $val = preg_replace('~<[^>]*$~', '', html_entity_decode($val, ENT_QUOTES)); //! close all opened tags (text can be shortened) } }