diff options
author | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2012-01-14 14:18:56 +0000 |
---|---|---|
committer | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2012-01-14 14:18:56 +0000 |
commit | 1de5c4d1a115fed087521280b51d45d3d206d47f (patch) | |
tree | b2b79de8a7adb06965990da23353482614127c73 | |
parent | da4780c12ef20b28751896a996f7858ff6f683b5 (diff) | |
download | mediawikicore-1de5c4d1a115fed087521280b51d45d3d206d47f.tar.gz mediawikicore-1de5c4d1a115fed087521280b51d45d3d206d47f.zip |
Fix for r107939: PHP Notice: Undefined variable: exportall in includes/specials/SpecialExport.php on line 173 when the "export all" checkbox is not checked
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/108901
-rw-r--r-- | includes/specials/SpecialExport.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/specials/SpecialExport.php b/includes/specials/SpecialExport.php index ed04fc11ed51..d061389ea3cc 100644 --- a/includes/specials/SpecialExport.php +++ b/includes/specials/SpecialExport.php @@ -55,6 +55,7 @@ class SpecialExport extends SpecialPage { $request->getIntOrNull( 'pagelink-depth' ) ); $nsindex = ''; + $exportall = false; if ( $request->getCheck( 'addcat' ) ) { $page = $request->getText( 'pages' ); |