XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
modifier.replace.php
Go to the documentation of this file.
1 <?php
23 function smarty_modifier_replace($string, $search, $replace)
24 {
25  return str_replace($search, $replace, $string);
26 }
27 
28 /* vim: set expandtab: */
29 
30 ?>