XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
modifier.wordwrap.php
Go to the documentation of this file.
1 <?php
24 function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false)
25 {
26  return wordwrap($string,$length,$break,$cut);
27 }
28 
29 ?>