Index: branches/5.2.x/core/kernel/utility/formatters/formatter.php =================================================================== diff -u -N -r15856 -r16027 --- branches/5.2.x/core/kernel/utility/formatters/formatter.php (.../formatter.php) (revision 15856) +++ branches/5.2.x/core/kernel/utility/formatters/formatter.php (.../formatter.php) (revision 16027) @@ -1,6 +1,6 @@ Application->isAdmin && isset($options['allow_html']) && $options['allow_html'] ) { - // this allows to revert kUtil::escape() call for each field submitted on Front-End - $value = htmlspecialchars_decode($value); + if ( isset($options['allow_html']) && $options['allow_html'] ) { + $value = $this->Application->unescapeRequestVariable($value); } return $value; @@ -300,4 +299,4 @@ return isset($options['sample_value']) ? $options['sample_value'] : ''; } -} \ No newline at end of file +}