Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -306,7 +306,7 @@ |
307 | 307 | |
308 | 308 | function setETag($tag) { $this->mETag = $tag; } |
309 | 309 | function setArticleBodyOnly($only) { $this->mArticleBodyOnly = $only; } |
310 | | - function getArticleBodyOnly($only) { return $this->mArticleBodyOnly; } |
| 310 | + function getArticleBodyOnly() { return $this->mArticleBodyOnly; } |
311 | 311 | |
312 | 312 | function addLink( $linkarr ) { |
313 | 313 | # $linkarr should be an associative array of attributes. We'll escape on output. |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -454,6 +454,8 @@ |
455 | 455 | * (bug 20466) Hidden categories are no more displayed when printing |
456 | 456 | * (bug 20446) When changing user rights with User@remotewiki and remotewiki is |
457 | 457 | the local wiki, the user is now treated as the local user |
| 458 | +* (bug 20494) OutputPage::getArticleBodyOnly() no longer requires an useless |
| 459 | + argument |
458 | 460 | |
459 | 461 | == API changes in 1.16 == |
460 | 462 | |