1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/14814] Fix reparser cron

PHPBB3-14814
This commit is contained in:
Tristan Darricau
2016-10-09 21:37:30 +02:00
parent 7bb4e88acd
commit d90afa67d8
3 changed files with 22 additions and 8 deletions

View File

@@ -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();
}