From 967ab871b836f618107fe144978bd1453c3c6634 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Thu, 11 Dec 2014 20:15:27 +0000 Subject: Update Smarty --- .../Smarty/libs/plugins/modifiercompiler.lower.php | 62 +++++++++++----------- 1 file changed, 31 insertions(+), 31 deletions(-) (limited to 'library/Smarty/libs/plugins/modifiercompiler.lower.php') diff --git a/library/Smarty/libs/plugins/modifiercompiler.lower.php b/library/Smarty/libs/plugins/modifiercompiler.lower.php index 1845cc1d2..1d255f371 100644 --- a/library/Smarty/libs/plugins/modifiercompiler.lower.php +++ b/library/Smarty/libs/plugins/modifiercompiler.lower.php @@ -1,31 +1,31 @@ - - * Name: lower
- * Purpose: convert string to lowercase - * - * @link http://www.smarty.net/manual/en/language.modifier.lower.php lower (Smarty online manual) - * @author Monte Ohrt - * @author Uwe Tews - * @param array $params parameters - * @return string with compiled code - */ - -function smarty_modifiercompiler_lower($params, $compiler) -{ - if (Smarty::$_MBSTRING) { - return 'mb_strtolower(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')' ; - } - // no MBString fallback - return 'strtolower(' . $params[0] . ')'; -} - -?> \ No newline at end of file + + * Name: lower
+ * Purpose: convert string to lowercase + * + * @link http://www.smarty.net/manual/en/language.modifier.lower.php lower (Smarty online manual) + * @author Monte Ohrt + * @author Uwe Tews + * + * @param array $params parameters + * + * @return string with compiled code + */ + +function smarty_modifiercompiler_lower($params) +{ + if (Smarty::$_MBSTRING) { + return 'mb_strtolower(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')'; + } + // no MBString fallback + return 'strtolower(' . $params[0] . ')'; +} -- cgit v1.2.3