From: Chad Horohoe Date: Thu, 16 Apr 2009 00:18:36 +0000 (+0000) Subject: Fixed undefined var. X-Git-Tag: 1.31.0-rc.0~42130 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/categories/modifier.php?a=commitdiff_plain;h=0b6011413c8bf2c6d2f5bacff05b106dda3cb4f7;p=lhc%2Fweb%2Fwiklou.git Fixed undefined var. --- 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' );