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) } }