From: Ævar Arnfjörð Bjarmason Date: Fri, 24 Jun 2005 23:00:19 +0000 (+0000) Subject: * Everything given to setSubtitle() is now parsed for the full wikisyntax X-Git-Tag: 1.5.0beta1~50 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=990b30e239e8f23b2af87aa805b0fcec84fbb6e8;p=lhc%2Fweb%2Fwiklou.git * Everything given to setSubtitle() is now parsed for the full wikisyntax --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 4d21d22e03..ab0a0f2229 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 === diff --git a/includes/OutputPage.php b/includes/OutputPage.php index fe8ff5d21b..bb093cf3aa 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -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; }