Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -170,7 +170,7 @@ |
171 | 171 | } |
172 | 172 | function getHTMLTitle() { return $this->mHTMLtitle; } |
173 | 173 | function getPageTitle() { return $this->mPagetitle; } |
174 | | - function setSubtitle( $str ) { $this->mSubtitle = $str; } |
| 174 | + function setSubtitle( $str ) { $this->mSubtitle = $this->parse($str); } |
175 | 175 | function getSubtitle() { return $this->mSubtitle; } |
176 | 176 | function isArticle() { return $this->mIsarticle; } |
177 | 177 | function setPrintable() { $this->mPrintable = true; } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -331,6 +331,7 @@ |
332 | 332 | * Fixed a typo in the Romanian language file (NS_MESIA => NS_MEDIA) |
333 | 333 | * (bug 2504) Updated the Finnish translation |
334 | 334 | * (bug 2506) Updated the Nynorsk translation |
| 335 | +* Everything given to setSubtitle() is now parsed for the full wikisyntax |
335 | 336 | |
336 | 337 | === Caveats === |
337 | 338 | |