You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

variablefilter.htmlspecialchars.php 351B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Smarty plugin
  4. *
  5. * @package Smarty
  6. * @subpackage PluginsFilter
  7. */
  8. /**
  9. * Smarty htmlspecialchars variablefilter plugin
  10. *
  11. * @param string $source input string
  12. *
  13. * @return string filtered output
  14. */
  15. function smarty_variablefilter_htmlspecialchars($source)
  16. {
  17. return htmlspecialchars($source, ENT_QUOTES, Smarty::$_CHARSET);
  18. }