From ceeca98964aa49c525bdf6cafebe916fd4e4bccf Mon Sep 17 00:00:00 2001 From: paladox Date: Sat, 9 Mar 2019 01:19:39 +0000 Subject: [PATCH] Fix undefined $config --- includes/Special.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Special.php b/includes/Special.php index 453e262..72e15c4 100644 --- a/includes/Special.php +++ b/includes/Special.php @@ -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; }