X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=library%2FSmarty%2Flibs%2Fplugins%2Fmodifiercompiler.count_characters.php;fp=library%2FSmarty%2Flibs%2Fplugins%2Fmodifiercompiler.count_characters.php;h=f8463d80a6b9a5258c00d4850c0aeaf19c19a09e;hb=0e1f8f64865af99adde865bf931c3078b9841afd;hp=98e8efa0de647745434db141055be0c6f1e4b1c5;hpb=5633e88aadc5731239430febe6b0799083d3729e;p=friendica.git diff --git a/library/Smarty/libs/plugins/modifiercompiler.count_characters.php b/library/Smarty/libs/plugins/modifiercompiler.count_characters.php index 98e8efa0de..f8463d80a6 100644 --- a/library/Smarty/libs/plugins/modifiercompiler.count_characters.php +++ b/library/Smarty/libs/plugins/modifiercompiler.count_characters.php @@ -1,33 +1,32 @@ - - * Name: count_characteres
- * Purpose: count the number of characters in a text - * - * @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual) - * @author Uwe Tews - * @param array $params parameters - * @return string with compiled code - */ -function smarty_modifiercompiler_count_characters($params, $compiler) -{ - if (!isset($params[1]) || $params[1] != 'true') { - return 'preg_match_all(\'/[^\s]/' . Smarty::$_UTF8_MODIFIER . '\',' . $params[0] . ', $tmp)'; - } - if (Smarty::$_MBSTRING) { - return 'mb_strlen(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')'; - } - // no MBString fallback - return 'strlen(' . $params[0] . ')'; -} - -?> \ No newline at end of file + + * Name: count_characteres
+ * Purpose: count the number of characters in a text + * + * @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual) + * @author Uwe Tews + * + * @param array $params parameters + * + * @return string with compiled code + */ +function smarty_modifiercompiler_count_characters($params) +{ + if (!isset($params[1]) || $params[1] != 'true') { + return 'preg_match_all(\'/[^\s]/' . Smarty::$_UTF8_MODIFIER . '\',' . $params[0] . ', $tmp)'; + } + if (Smarty::$_MBSTRING) { + return 'mb_strlen(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')'; + } + // no MBString fallback + return 'strlen(' . $params[0] . ')'; +}