diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-07-17 16:52:52 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-07-17 16:52:52 +0200 |
commit | c8e209a2dee7548031b4d2b5137c2ef064d6f588 (patch) | |
tree | f4e04f396e2418e7efed1ce4b9f2d1a03e7d06c9 /phpBB/phpbb/console | |
parent | 9274bc4e3263b4aa9e278009fbc17f10985c439e (diff) | |
download | forums-c8e209a2dee7548031b4d2b5137c2ef064d6f588.tar forums-c8e209a2dee7548031b4d2b5137c2ef064d6f588.tar.gz forums-c8e209a2dee7548031b4d2b5137c2ef064d6f588.tar.bz2 forums-c8e209a2dee7548031b4d2b5137c2ef064d6f588.tar.xz forums-c8e209a2dee7548031b4d2b5137c2ef064d6f588.zip |
[ticket/13986] Replaced hardcoded value
PHPBB3-13986
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r-- | phpBB/phpbb/console/command/reparser/reparse.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/reparser/reparse.php b/phpBB/phpbb/console/command/reparser/reparse.php index f81ebfa8ca..63124b4b8c 100644 --- a/phpBB/phpbb/console/command/reparser/reparse.php +++ b/phpBB/phpbb/console/command/reparser/reparse.php @@ -248,7 +248,7 @@ class reparse extends \phpbb\console\command\command $min = $this->get_option($name, 'range-min'); $size = $this->get_option($name, 'range-size'); - if ($max === 0) + if ($max < $min) { return; } |