From 0b6011413c8bf2c6d2f5bacff05b106dda3cb4f7 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Thu, 16 Apr 2009 00:18:36 +0000 Subject: [PATCH] Fixed undefined var. --- includes/specials/SpecialExport.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/specials/SpecialExport.php b/includes/specials/SpecialExport.php index 71ed4d4b0c..be58205f89 100644 --- a/includes/specials/SpecialExport.php +++ b/includes/specials/SpecialExport.php @@ -45,6 +45,7 @@ class SpecialExport extends SpecialPage { $this->images = $wgRequest->getCheck( 'images' ); // Doesn't do anything yet $this->pageLinkDepth = $this->validateLinkDepth( $wgRequest->getIntOrNull( 'pagelink-depth' ) ); + $nsindex = ''; if ( $wgRequest->getCheck( 'addcat' ) ) { $page = $wgRequest->getText( 'pages' ); -- 2.20.1