* (bug 28368) add hint for multipart/form-data to api information of action=import...
authorSam Reed <reedy@users.mediawiki.org>
Sun, 10 Apr 2011 12:15:03 +0000 (12:15 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Sun, 10 Apr 2011 12:15:03 +0000 (12:15 +0000)
Add RELEASE-NOTES for r85585 too

RELEASE-NOTES
includes/api/ApiFeedWatchlist.php

index 93190e7..3d77893 100644 (file)
@@ -325,6 +325,9 @@ PHP if you have not done so prior to upgrading MediaWiki.
 * (bug 28365) Added description for uiprop=preferencestoken in meta=userinfo
 * (bug 28394) Set forgotten parameters types in ApiUnblock
 * (bug 28395) Set forgotten parameters types in ApiParse
+* (bug 28368) add hint for multipart/form-data to api information of
+  action=import&xml=
+* (bug 28391) action=feedwatchlist&allrev should be a bool
 
 === Languages updated in 1.18 ===
 
index 1d6b22c..7bc90bc 100644 (file)
@@ -171,7 +171,7 @@ class ApiFeedWatchlist extends ApiBase {
                                ApiBase::PARAM_MIN => 1,
                                ApiBase::PARAM_MAX => 72,
                        ),
-                       'allrev' => null,
+                       'allrev' => false,
                        'wlowner' => array(
                                ApiBase::PARAM_TYPE => 'user'
                        ),
@@ -200,7 +200,7 @@ class ApiFeedWatchlist extends ApiBase {
        protected function getExamples() {
                return array(
                        'api.php?action=feedwatchlist',
-                       'api.php?action=feedwatchlist&allrev=allrev&linktodiffs=&hours=6'
+                       'api.php?action=feedwatchlist&allrev=&linktodiffs=&hours=6'
                );
        }