diff options
Diffstat (limited to '3dparty/Smarty/plugins/modifier.replace.php')
-rw-r--r-- | 3dparty/Smarty/plugins/modifier.replace.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/3dparty/Smarty/plugins/modifier.replace.php b/3dparty/Smarty/plugins/modifier.replace.php deleted file mode 100644 index f922889250c..00000000000 --- a/3dparty/Smarty/plugins/modifier.replace.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php -/** - * Smarty plugin - * @package Smarty - * @subpackage PluginsModifier - */ - -/** - * Smarty replace modifier plugin - * - * Type: modifier<br> - * Name: replace<br> - * Purpose: simple search/replace - * - * @link http://smarty.php.net/manual/en/language.modifier.replace.php replace (Smarty online manual) - * @author Monte Ohrt <monte at ohrt dot com> - * @author Uwe Tews - * @param string $ - * @param string $ - * @param string $ - * @return string - */ -function smarty_modifier_replace($string, $search, $replace) -{ - require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php'); - return smarty_mb_str_replace($search, $replace, $string); -} - -?>
\ No newline at end of file |