diff options
author | Chris Smith <chris@jalakai.co.uk> | 2007-09-30 04:08:15 +0200 |
---|---|---|
committer | Chris Smith <chris@jalakai.co.uk> | 2007-09-30 04:08:15 +0200 |
commit | 25ec097b5237c0e0cffd5c26918898836516aff6 (patch) | |
tree | d1165c212a10b0638eeaaafbf14d8b44ea3a5f45 | |
parent | 1986aa9e32d0631a86ddb9a5d6883c628b0d3d3f (diff) | |
download | rpg-25ec097b5237c0e0cffd5c26918898836516aff6.tar.gz rpg-25ec097b5237c0e0cffd5c26918898836516aff6.tar.bz2 |
ptln parameter spelling correction
darcs-hash:20070930020815-d26fc-d9b3baf8c1bf0627dbdd011fd5791a3b11b09a82.gz
-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"; } /** |