diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-11-05 21:35:06 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-11-05 21:35:06 +0100 |
commit | ecb81894ccefd6b6de3bee6c192497c59524da4e (patch) | |
tree | 21e7db9243d29852380aff154860d19a7ef29867 /phpBB/phpbb/console/command | |
parent | 094ac6b60fbe9e0d7e1042a919f7a5e5602a759a (diff) | |
parent | d90afa67d866e1be44d3a69c97497c8412695f8d (diff) | |
download | forums-ecb81894ccefd6b6de3bee6c192497c59524da4e.tar forums-ecb81894ccefd6b6de3bee6c192497c59524da4e.tar.gz forums-ecb81894ccefd6b6de3bee6c192497c59524da4e.tar.bz2 forums-ecb81894ccefd6b6de3bee6c192497c59524da4e.tar.xz forums-ecb81894ccefd6b6de3bee6c192497c59524da4e.zip |
Merge remote-tracking branch 'nicofuma/ticket/14814' into 3.2.x
Diffstat (limited to 'phpBB/phpbb/console/command')
-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 b10bd56a58..cebeee0919 100644 --- a/phpBB/phpbb/console/command/reparser/reparse.php +++ b/phpBB/phpbb/console/command/reparser/reparse.php @@ -208,7 +208,7 @@ class reparse extends \phpbb\console\command\command $size = $this->get_option('range-size'); // range-max has no default value, it must be computed for each reparser - if ($max == null) + if ($max === null) { $max = $reparser->get_max_id(); } |