BUGFIX Consistently using multibyte-safe htmlentities()

This commit is contained in:
Ingo Schommer 2011-11-29 09:45:34 +01:00
parent 55ad61e4c3
commit 20085c46c3

View File

@ -1067,7 +1067,7 @@ JS;
}
return array(
"Message" => htmlentities($_REQUEST['Message']),
"Message" => htmlentities($_REQUEST['Message'], ENT_COMPAT, 'UTF-8'),
"Buttons" => $buttons,
"Modal" => $_REQUEST['Modal'] ? true : false,
);