From 31a7332a00cdf033845d1951c181b3a3bd314b12 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 3 May 2008 03:52:33 +0000 Subject: [PATCH] * Add method to append subtitle * Tweak message --- includes/OutputPage.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index e760d648b0..190042ed8d 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -227,6 +227,7 @@ class OutputPage { public function getHTMLTitle() { return $this->mHTMLtitle; } public function getPageTitle() { return $this->mPagetitle; } public function setSubtitle( $str ) { $this->mSubtitle = /*$this->parse(*/$str/*)*/; } // @bug 2514 + public function appendSubtitle( $str ) { $this->mSubtitle .= /*$this->parse(*/$str/*)*/; } // @bug 2514 public function getSubtitle() { return $this->mSubtitle; } public function isArticle() { return $this->mIsarticle; } public function setPrintable() { $this->mPrintable = true; } -- 2.20.1