Fix undefined $config

This commit is contained in:
paladox
2019-03-09 01:19:39 +00:00
committed by Daniel Kraus
parent e7e03d3383
commit ceeca98964

View File

@ -146,7 +146,7 @@ class Special extends \SpecialPage {
$start += 1;
// Check if the time limit is exceeded
if ( microtime( true ) - $startTime > $config->specialPageReloadAfter )
if ( microtime( true ) - $startTime > $this->config->specialPageReloadAfter )
{
break;
}