Просмотр файла app/lib/smarty/plugins/modifier.esc.php

Размер файла: 144B
<?php

function smarty_modifier_esc($text) {
    $text = htmlspecialchars_decode(htmlspecialchars_decode($text));
    return $text;
}

?>