]> git.mxchange.org Git - friendica.git/blobdiff - library/Smarty/libs/plugins/modifiercompiler.strip.php
networkheader: do css work the other supported themes
[friendica.git] / library / Smarty / libs / plugins / modifiercompiler.strip.php
index f1d5db045588b99613a46bb5dc7286d2c473e70c..fcd6cbaea2cc76b941e04131d3de6daf4bbb26f2 100644 (file)
@@ -1,33 +1,33 @@
-<?php\r
-/**\r
- * Smarty plugin\r
- *\r
- * @package Smarty\r
- * @subpackage PluginsModifierCompiler\r
- */\r
-\r
-/**\r
- * Smarty strip modifier plugin\r
- *\r
- * Type:     modifier<br>\r
- * Name:     strip<br>\r
- * Purpose:  Replace all repeated spaces, newlines, tabs\r
- *              with a single space or supplied replacement string.<br>\r
- * Example:  {$var|strip} {$var|strip:"&nbsp;"}<br>\r
- * Date:     September 25th, 2002\r
- *\r
- * @link http://www.smarty.net/manual/en/language.modifier.strip.php strip (Smarty online manual)\r
- * @author Uwe Tews\r
- * @param array $params parameters\r
- * @return string with compiled code\r
- */\r
-\r
-function smarty_modifiercompiler_strip($params, $compiler)\r
-{\r
-    if (!isset($params[1])) {\r
-        $params[1] = "' '";\r
-    }\r
-    return "preg_replace('!\s+!" . Smarty::$_UTF8_MODIFIER . "', {$params[1]},{$params[0]})";\r
-}\r
-\r
-?>
\ No newline at end of file
+<?php
+/**
+ * Smarty plugin
+ *
+ * @package    Smarty
+ * @subpackage PluginsModifierCompiler
+ */
+
+/**
+ * Smarty strip modifier plugin
+ * Type:     modifier<br>
+ * Name:     strip<br>
+ * Purpose:  Replace all repeated spaces, newlines, tabs
+ *              with a single space or supplied replacement string.<br>
+ * Example:  {$var|strip} {$var|strip:"&nbsp;"}<br>
+ * 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]})";
+}