Update to Smarty 3.1.15

This commit is contained in:
Némunaire 2013-10-09 19:08:38 +02:00
commit 1c9cd9208f
119 changed files with 5232 additions and 4641 deletions

View file

@ -8,13 +8,13 @@
/**
* Smarty upper modifier plugin
*
*
* Type: modifier<br>
* Name: lower<br>
* Purpose: convert string to uppercase
*
*
* @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual)
* @author Uwe Tews
* @author Uwe Tews
* @param array $params parameters
* @return string with compiled code
*/
@ -25,6 +25,4 @@ function smarty_modifiercompiler_upper($params, $compiler)
}
// no MBString fallback
return 'strtoupper(' . $params[0] . ')';
}
?>
}