* Everything given to setSubtitle() is now parsed for the full wikisyntax
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Fri, 24 Jun 2005 23:00:19 +0000 (23:00 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Fri, 24 Jun 2005 23:00:19 +0000 (23:00 +0000)
RELEASE-NOTES
includes/OutputPage.php

index 4d21d22..ab0a0f2 100644 (file)
@@ -331,6 +331,7 @@ Various bugfixes, small features, and a few experimental things:
 * Fixed a typo in the Romanian language file (NS_MESIA => NS_MEDIA)
 * (bug 2504) Updated the Finnish translation
 * (bug 2506) Updated the Nynorsk translation
+* Everything given to setSubtitle() is now parsed for the full wikisyntax
 
 === Caveats ===
 
index fe8ff5d..bb093cf 100644 (file)
@@ -170,7 +170,7 @@ class OutputPage {
        }
        function getHTMLTitle() { return $this->mHTMLtitle; }
        function getPageTitle() { return $this->mPagetitle; }
-       function setSubtitle( $str ) { $this->mSubtitle = $str; }
+       function setSubtitle( $str ) { $this->mSubtitle = $this->parse($str); }
        function getSubtitle() { return $this->mSubtitle; }
        function isArticle() { return $this->mIsarticle; }
        function setPrintable() { $this->mPrintable = true; }