00001 <?php 00024 function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false) 00025 { 00026 return wordwrap($string,$length,$break,$cut); 00027 } 00028 00029 ?>