Index: trunk/phase3/includes/api/ApiParamInfo.php |
— | — | @@ -162,9 +162,8 @@ |
163 | 163 | } |
164 | 164 | if ( isset( $p[ApiBase::PARAM_ISMULTI] ) && $p[ApiBase::PARAM_ISMULTI] ) { |
165 | 165 | $a['multi'] = ''; |
166 | | - $a['limit'] = $this->getMain()->canApiHighLimits() ? |
167 | | - ApiBase::LIMIT_SML2 : |
168 | | - ApiBase::LIMIT_SML1; |
| 166 | + $a['limit'] = ApiBase::LIMIT_SML1; |
| 167 | + $a['highlimit'] = ApiBase::LIMIT_SML2; |
169 | 168 | } |
170 | 169 | |
171 | 170 | if ( isset( $p[ApiBase::PARAM_ALLOW_DUPLICATES] ) && $p[ApiBase::PARAM_ALLOW_DUPLICATES] ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -362,6 +362,7 @@ |
363 | 363 | * (bug 26882) Allow listing of indefinite protections with the API. |
364 | 364 | * (bug 27344) add drprefix param to list=deletedrevs. |
365 | 365 | * (bug 28560) list=deletedrevs should die, if combination of param is invalid. |
| 366 | +* (bug 28238) paraminfo: output both limits for multi param |
366 | 367 | |
367 | 368 | === Languages updated in 1.18 === |
368 | 369 | |