X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=library%2FSmarty%2Flibs%2Fplugins%2Fmodifiercompiler.strip.php;h=fcd6cbaea2cc76b941e04131d3de6daf4bbb26f2;hb=a6aac8f950cd7a5d73ce32ee079156f14b8990ec;hp=f1d5db045588b99613a46bb5dc7286d2c473e70c;hpb=bfca7f47ef1f986ea8515d23c3c1962c7fe3a298;p=friendica.git diff --git a/library/Smarty/libs/plugins/modifiercompiler.strip.php b/library/Smarty/libs/plugins/modifiercompiler.strip.php index f1d5db0455..fcd6cbaea2 100644 --- a/library/Smarty/libs/plugins/modifiercompiler.strip.php +++ b/library/Smarty/libs/plugins/modifiercompiler.strip.php @@ -1,33 +1,33 @@ - - * Name: strip
- * Purpose: Replace all repeated spaces, newlines, tabs - * with a single space or supplied replacement string.
- * Example: {$var|strip} {$var|strip:" "}
- * Date: September 25th, 2002 - * - * @link http://www.smarty.net/manual/en/language.modifier.strip.php strip (Smarty online manual) - * @author Uwe Tews - * @param array $params parameters - * @return string with compiled code - */ - -function smarty_modifiercompiler_strip($params, $compiler) -{ - if (!isset($params[1])) { - $params[1] = "' '"; - } - return "preg_replace('!\s+!" . Smarty::$_UTF8_MODIFIER . "', {$params[1]},{$params[0]})"; -} - -?> \ No newline at end of file + + * Name: strip
+ * Purpose: Replace all repeated spaces, newlines, tabs + * with a single space or supplied replacement string.
+ * Example: {$var|strip} {$var|strip:" "}
+ * Date: September 25th, 2002 + * + * @link http://www.smarty.net/manual/en/language.modifier.strip.php strip (Smarty online manual) + * @author Uwe Tews + * + * @param array $params parameters + * + * @return string with compiled code + */ + +function smarty_modifiercompiler_strip($params) +{ + if (!isset($params[1])) { + $params[1] = "' '"; + } + + return "preg_replace('!\s+!" . Smarty::$_UTF8_MODIFIER . "', {$params[1]},{$params[0]})"; +}