aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/search.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-15 21:52:25 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-16 22:35:44 +0200
commita94581e7cae2e7fac6f88b8718866f694e8b01f0 (patch)
treed6b9bd0519f65d087e35f4d4c89681086d63ec17 /phpBB/search.php
parent99a2f2fdb4d3f617f09ca248bf526b7ec97ba7aa (diff)
downloadforums-a94581e7cae2e7fac6f88b8718866f694e8b01f0.tar
forums-a94581e7cae2e7fac6f88b8718866f694e8b01f0.tar.gz
forums-a94581e7cae2e7fac6f88b8718866f694e8b01f0.tar.bz2
forums-a94581e7cae2e7fac6f88b8718866f694e8b01f0.tar.xz
forums-a94581e7cae2e7fac6f88b8718866f694e8b01f0.zip
[ticket/12721] Add Squiz.ControlStructures.ForLoopDeclaration in legacy
PHPBB3-12721
Diffstat (limited to 'phpBB/search.php')
-rw-r--r--phpBB/search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php
index 91ea21909d..f1f02ac766 100644
--- a/phpBB/search.php
+++ b/phpBB/search.php
@@ -1256,7 +1256,7 @@ $s_characters .= '<option value="0">0</option>';
$s_characters .= '<option value="25">25</option>';
$s_characters .= '<option value="50">50</option>';
-for ($i = 100; $i <= 1000 ; $i += 100)
+for ($i = 100; $i <= 1000; $i += 100)
{
$selected = ($i == 300) ? ' selected="selected"' : '';
$s_characters .= '<option value="' . $i . '"' . $selected . '>' . $i . '</option>';