00001 <?php 00022 function smarty_modifier_strip_tags($string, $replace_with_space = true) 00023 { 00024 if ($replace_with_space) 00025 return preg_replace('!<[^>]*?>!', ' ', $string); 00026 else 00027 return strip_tags($string); 00028 } 00029 00030 /* vim: set expandtab: */ 00031 00032 ?>