khanat-opennel-code/code/web/private_php/ams/smarty/libs/plugins/variablefilter.htmlspecialchars.php

20 lines
351 B
PHP
Raw Normal View History

2015-03-07 16:01:14 +00:00
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsFilter
*/
/**
* Smarty htmlspecialchars variablefilter plugin
*
* @param string $source input string
*
* @return string filtered output
*/
function smarty_variablefilter_htmlspecialchars($source)
{
return htmlspecialchars($source, ENT_QUOTES, Smarty::$_CHARSET);
}