From ae51814cb2df834dc9f4b27b5eb0714505bab73f Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Thu, 30 Jun 2011 15:15:54 +0000 Subject: [PATCH] Fix fatal in r77354 (!!), discovered this when purgeList.php fataled on me on the WMF cluster --- maintenance/purgeList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/purgeList.php b/maintenance/purgeList.php index 2ae4b222ff..9072b4215c 100644 --- a/maintenance/purgeList.php +++ b/maintenance/purgeList.php @@ -43,7 +43,7 @@ class PurgeList extends Maintenance { $url = $title->getFullUrl(); $this->output( "$url\n" ); $urls[] = $url; - if ( $this->getOptions( 'purge' ) ) { + if ( $this->getOption( 'purge' ) ) { $title->invalidateCache(); } } else { -- 2.20.1