Upload version 3.1.20

This commit is contained in:
Uwe Tews
2014-10-18 00:18:11 +02:00
parent d091179e43
commit 0409ab005e
130 changed files with 31419 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
<?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);
}