diff options
-rw-r--r-- | inc/common.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/common.php b/inc/common.php index 18fad2120..96980e7ee 100644 --- a/inc/common.php +++ b/inc/common.php @@ -39,8 +39,8 @@ function hsc($string){ * * @author Andreas Gohr <andi@splitbrain.org> */ -function ptln($string,$intend=0){ - echo str_repeat(' ', $intend)."$string\n"; +function ptln($string,$indent=0){ + echo str_repeat(' ', $indent)."$string\n"; } /** |