Files
zurawik.pl/core/plugins/Smarty/modifier.htmlentities.php
2026-05-15 18:33:51 +02:00

15 lines
207 B
PHP

<?php
/**
*
* @param $str
* @return unknown_type
*/
function smarty_modifier_htmlentities($str){
$str = str_replace('"', "&quot;", $str);
$str = str_replace("'", "&#039;", $str);
return $str;
}
?>