Index: branches/5.2.x/core/kernel/utility/formatters/formatter.php =================================================================== diff -u -N -r15137 -r15314 --- branches/5.2.x/core/kernel/utility/formatters/formatter.php (.../formatter.php) (revision 15137) +++ branches/5.2.x/core/kernel/utility/formatters/formatter.php (.../formatter.php) (revision 15314) @@ -1,6 +1,6 @@ Application->isAdmin && isset($options['allow_html']) && $options['allow_html'] ) { // this allows to revert htmlspecialchars call for each field submitted on front-end - $value = kUtil::unhtmlentities($value); + $value = htmlspecialchars_decode($value); } return $value;