diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-01-08 23:20:30 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-01-08 23:20:30 +0100 |
commit | 41a07eedeb13349305977bb8882f0bd6429480e3 (patch) | |
tree | 92b565d1790ef32e2ffbf880a4a6f127b6189e1f /phpBB/includes | |
parent | 24befac7b4879ae02a4416e47ca0deea93766b93 (diff) | |
download | forums-41a07eedeb13349305977bb8882f0bd6429480e3.tar forums-41a07eedeb13349305977bb8882f0bd6429480e3.tar.gz forums-41a07eedeb13349305977bb8882f0bd6429480e3.tar.bz2 forums-41a07eedeb13349305977bb8882f0bd6429480e3.tar.xz forums-41a07eedeb13349305977bb8882f0bd6429480e3.zip |
[ticket/11301] Guidelines: Add spaces in front and after the / operator.
PHPBB3-11301
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/captcha/captcha_non_gd.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/captcha/captcha_non_gd.php b/phpBB/includes/captcha/captcha_non_gd.php index a823fa4226..2adf909b96 100644 --- a/phpBB/includes/captcha/captcha_non_gd.php +++ b/phpBB/includes/captcha/captcha_non_gd.php @@ -119,7 +119,7 @@ class captcha $new_line = ''; $end = strlen($scanline) - ceil($width/2); - for ($i = (int) floor($width/2); $i < $end; $i++) + for ($i = (int) floor($width / 2); $i < $end; $i++) { $pixel = ord($scanline{$i}); |