X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=library%2FSmarty%2Flibs%2Fplugins%2Fmodifiercompiler.upper.php;h=52ca4e8ff4fda019d1f5234f3c1209aa1c7dbe38;hb=395be3dcde55d16c8e23dbe9137d1279b58442a4;hp=f368e37dc3592332a7325d2e695158c34f90909b;hpb=ba4db236ecff1ffdb56adc2715b3f53515f8cb34;p=friendica.git diff --git a/library/Smarty/libs/plugins/modifiercompiler.upper.php b/library/Smarty/libs/plugins/modifiercompiler.upper.php index f368e37dc3..52ca4e8ff4 100644 --- a/library/Smarty/libs/plugins/modifiercompiler.upper.php +++ b/library/Smarty/libs/plugins/modifiercompiler.upper.php @@ -1,30 +1,29 @@ - - * Name: lower
- * Purpose: convert string to uppercase - * - * @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual) - * @author Uwe Tews - * @param array $params parameters - * @return string with compiled code - */ -function smarty_modifiercompiler_upper($params, $compiler) -{ - if (Smarty::$_MBSTRING) { - return 'mb_strtoupper(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')' ; - } - // no MBString fallback - return 'strtoupper(' . $params[0] . ')'; -} - -?> \ No newline at end of file + + * Name: lower
+ * Purpose: convert string to uppercase + * + * @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual) + * @author Uwe Tews + * + * @param array $params parameters + * + * @return string with compiled code + */ +function smarty_modifiercompiler_upper($params) +{ + if (Smarty::$_MBSTRING) { + return 'mb_strtoupper(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')'; + } + // no MBString fallback + return 'strtoupper(' . $params[0] . ')'; +}