15 lines
207 B
PHP
15 lines
207 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
* @param $str
|
|
* @return unknown_type
|
|
*/
|
|
|
|
function smarty_modifier_htmlentities($str){
|
|
|
|
$str = str_replace('"', """, $str);
|
|
$str = str_replace("'", "'", $str);
|
|
return $str;
|
|
}
|
|
?>
|