From 990b30e239e8f23b2af87aa805b0fcec84fbb6e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Fri, 24 Jun 2005 23:00:19 +0000 Subject: [PATCH] * Everything given to setSubtitle() is now parsed for the full wikisyntax --- RELEASE-NOTES | 1 + includes/OutputPage.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.20.1