summaryrefslogtreecommitdiff
path: root/libs/plugins/modifiercompiler.cat.php
diff options
context:
space:
mode:
Diffstat (limited to 'libs/plugins/modifiercompiler.cat.php')
-rw-r--r--libs/plugins/modifiercompiler.cat.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/libs/plugins/modifiercompiler.cat.php b/libs/plugins/modifiercompiler.cat.php
deleted file mode 100644
index 2c3a8b2a..00000000
--- a/libs/plugins/modifiercompiler.cat.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/**
- * Smarty plugin
- *
- * @package Smarty
- * @subpackage PluginsModifierCompiler
- */
-/**
- * Smarty cat modifier plugin
- * Type: modifier
- * Name: cat
- * Date: Feb 24, 2003
- * Purpose: catenate a value to a variable
- * Input: string to catenate
- * Example: {$var|cat:"foo"}
- *
- * @link https://www.smarty.net/manual/en/language.modifier.cat.php cat
- * (Smarty online manual)
- * @author Uwe Tews
- *
- * @param array $params parameters
- *
- * @return string with compiled code
- */
-function smarty_modifiercompiler_cat($params)
-{
- return '(' . implode(').(', $params) . ')';
-}