00001 <?php 00026 function smarty_modifier_strip($text, $replace = ' ') 00027 { 00028 return preg_replace('!\s+!', $replace, $text); 00029 } 00030 00031 /* vim: set expandtab: */ 00032 00033 ?>