Index: trunk/phase3/includes/api/ApiMain.php |
— | — | @@ -197,7 +197,7 @@ |
198 | 198 | 'code' => $e->getCodeString(), 'info' => $e->getMessage()); |
199 | 199 | |
200 | 200 | // Only print the help message when this is for the developer, not runtime |
201 | | - if ($this->mPrinter->getIsHtml()) |
| 201 | + if ($this->mPrinter->getIsHtml() || $this->getRequest()->getVal('action') == 'help') |
202 | 202 | ApiResult :: setContent($errMessage, $this->makeHelpMsg()); |
203 | 203 | |
204 | 204 | } else { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -285,6 +285,7 @@ |
286 | 286 | * (bug 10260) Show page protection status |
287 | 287 | * (bug 10392) Include MediaWiki version details in version output |
288 | 288 | * (bug 10411) Site language in meta=siteinfo |
| 289 | +* (bug 10391) action=help doesn't return help if format is fancy markup |
289 | 290 | |
290 | 291 | == Maintenance script changes since 1.10 == |
291 | 292 | |