]> git.sur5r.net Git - contagged/blobdiff - smarty/plugins/modifier.wordwrap.php
Smarty update to 2.6.14
[contagged] / smarty / plugins / modifier.wordwrap.php
index 55b4a1df3f6eb91a9185fdafe5ed00f02e29747f..ce07181569fff87cb0108fa4772537ec2cb9f1f1 100644 (file)
@@ -14,6 +14,7 @@
  * Purpose:  wrap a string of text at a given length
  * @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php
  *          wordwrap (Smarty online manual)
+ * @author   Monte Ohrt <monte at ohrt dot com>
  * @param string
  * @param integer
  * @param string
@@ -22,7 +23,7 @@
  */
 function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false)
 {
-       return wordwrap($string,$length,$break,$cut);
+    return wordwrap($string,$length,$break,$cut);
 }
 
 ?>