<?php
/**
* this is used for input and texarea fields
* this does not provide bbcode and nlbr
* in this case use fullhtml
*
*/
function smarty_modifier_html($string, $char_set = null)
{
if(!$char_set) $char_set = SMARTY_MOD_HTML_USE_CHARSET;
return htmlentities($string, ENT_QUOTES, $char_set);
}
?>