]> git.mxchange.org Git - friendica.git/blobdiff - library/Smarty/libs/plugins/modifiercompiler.default.php
reverting tinymce changes, updating smarty to 3.1.19
[friendica.git] / library / Smarty / libs / plugins / modifiercompiler.default.php
index 4f831a5894665f3ed97fe3279123e756fdc0ec38..fe777623e538ed90c4d55f55bc838027570e2b12 100644 (file)
@@ -1,35 +1,35 @@
-<?php\r
-/**\r
- * Smarty plugin\r
- *\r
- * @package Smarty\r
- * @subpackage PluginsModifierCompiler\r
- */\r
-\r
-/**\r
- * Smarty default modifier plugin\r
- *\r
- * Type:     modifier<br>\r
- * Name:     default<br>\r
- * Purpose:  designate default value for empty variables\r
- *\r
- * @link http://www.smarty.net/manual/en/language.modifier.default.php default (Smarty online manual)\r
- * @author Uwe Tews\r
- * @param array $params parameters\r
- * @return string with compiled code\r
- */\r
-function smarty_modifiercompiler_default ($params, $compiler)\r
-{\r
-    $output = $params[0];\r
-    if (!isset($params[1])) {\r
-        $params[1] = "''";\r
-    }\r
-    \r
-    array_shift($params);\r
-    foreach ($params as $param) {\r
-        $output = '(($tmp = @' . $output . ')===null||$tmp===\'\' ? ' . $param . ' : $tmp)';\r
-    }\r
-    return $output;\r
-}\r
-\r
-?>
\ No newline at end of file
+<?php
+/**
+ * Smarty plugin
+ *
+ * @package    Smarty
+ * @subpackage PluginsModifierCompiler
+ */
+
+/**
+ * Smarty default modifier plugin
+ * Type:     modifier<br>
+ * Name:     default<br>
+ * Purpose:  designate default value for empty variables
+ *
+ * @link   http://www.smarty.net/manual/en/language.modifier.default.php default (Smarty online manual)
+ * @author Uwe Tews
+ *
+ * @param array $params parameters
+ *
+ * @return string with compiled code
+ */
+function smarty_modifiercompiler_default($params)
+{
+    $output = $params[0];
+    if (!isset($params[1])) {
+        $params[1] = "''";
+    }
+
+    array_shift($params);
+    foreach ($params as $param) {
+        $output = '(($tmp = @' . $output . ')===null||$tmp===\'\' ? ' . $param . ' : $tmp)';
+    }
+
+    return $output;
+}