aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2016-10-09 21:37:30 +0200
committerTristan Darricau <github@nicofuma.fr>2016-11-02 19:38:33 +0100
commitd90afa67d866e1be44d3a69c97497c8412695f8d (patch)
tree56c892af6d0e9c222e375b56d8999d61da8cf84a /phpBB/phpbb/console/command
parent7bb4e88acdb0f45f8bfbad74b558db65524cbe1a (diff)
downloadforums-d90afa67d866e1be44d3a69c97497c8412695f8d.tar
forums-d90afa67d866e1be44d3a69c97497c8412695f8d.tar.gz
forums-d90afa67d866e1be44d3a69c97497c8412695f8d.tar.bz2
forums-d90afa67d866e1be44d3a69c97497c8412695f8d.tar.xz
forums-d90afa67d866e1be44d3a69c97497c8412695f8d.zip
[ticket/14814] Fix reparser cron
PHPBB3-14814
Diffstat (limited to 'phpBB/phpbb/console/command')
-rw-r--r--phpBB/phpbb/console/command/reparser/reparse.php2
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();
}