From d94291ffaf00496aff72befc39870db14747c00e Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sat, 7 Feb 2009 15:13:42 +0000 Subject: [PATCH] Fix another E_NOTICE. --- includes/specials/SpecialExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialExport.php b/includes/specials/SpecialExport.php index b2ec82b05a..f996cacdb2 100644 --- a/includes/specials/SpecialExport.php +++ b/includes/specials/SpecialExport.php @@ -38,7 +38,7 @@ class SpecialExport extends SpecialPage { $this->curonly = true; $this->doExport = false; $this->templates = $wgRequest->getCheck( 'templates' ); - $this->images = $wgRequest->getCheckImages; // Doesn't do anything yet + $this->images = $wgRequest->getCheck( 'images' ); // Doesn't do anything yet $this->pageLinkDepth = $wgRequest->getIntOrNull( 'pagelink-depth' ); if ( $wgRequest->getCheck( 'addcat' ) ) { -- 2.20.1