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