PageRenderTime 32ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/framework/vendor/smarty3/lib/libs/plugins/variablefilter.htmlspecialchars.php

http://zoop.googlecode.com/
PHP | 21 lines | 6 code | 2 blank | 13 comment | 0 complexity | 320c819d38ce776d54007ba5663e83c2 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.1
  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. * @param object $ &$smarty Smarty object
  13. * @return string filtered output
  14. */
  15. function smarty_variablefilter_htmlspecialchars($source, $smarty)
  16. {
  17. return htmlspecialchars($source, ENT_QUOTES);
  18. }
  19. ?>