Merge "* Bug 39032 - ApiQuery generates help in constructor."
authorNikerabbit <niklas.laxstrom@gmail.com>
Sat, 4 Aug 2012 14:05:03 +0000 (14:05 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Sat, 4 Aug 2012 14:05:03 +0000 (14:05 +0000)
RELEASE-NOTES-1.20
includes/api/ApiQuery.php

index 0208751..5a76c84 100644 (file)
@@ -224,6 +224,7 @@ upgrade PHP if you have not done so prior to upgrading MediaWiki.
 * (bug 38231) Add xml parse tree to action=parse.
 * Watchlist notification timestamp may be queried by page and may be updated via the API.
 * (bug 38904) prop=revisions&rvstart=... no longer blows up when continuing.
+* (bug 39032) ApiQuery generates help in constructor.
 
 === Languages updated in 1.20 ===
 
index d7c341d..e22ef27 100644 (file)
@@ -119,9 +119,6 @@ class ApiQuery extends ApiBase {
                $this->mPropModuleNames = array_keys( $this->mQueryPropModules );
                $this->mListModuleNames = array_keys( $this->mQueryListModules );
                $this->mMetaModuleNames = array_keys( $this->mQueryMetaModules );
-
-               $this->makeHelpMsgHelper( $this->mQueryPropModules, 'prop' );
-               $this->makeHelpMsgHelper( $this->mQueryListModules, 'list' );
        }
 
        /**