10 * Smarty replace modifier plugin
14 * Purpose: simple search/replace
15 * @link http://smarty.php.net/manual/en/language.modifier.replace.php
16 * replace (Smarty online manual)
17 * @author Monte Ohrt <monte at ohrt dot com>
23 function smarty_modifier_replace($string, $search, $replace)
25 return str_replace($search, $replace, $string);
28 /* vim: set expandtab: */
This page took 1.215706 seconds and 4 git commands to generate.