Fix linting

This commit is contained in:
Nigel Sheldon 2020-11-21 15:51:56 +01:00
commit 1614145b18
262 changed files with 45324 additions and 42695 deletions

View file

@ -21,9 +21,7 @@
* @param boolean
* @return string
*/
function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false)
function smarty_modifier_wordwrap($string, $length=80, $break="\n", $cut=false)
{
return wordwrap($string,$length,$break,$cut);
return wordwrap($string, $length, $break, $cut);
}
?>