From: Aaron Schulz Date: Sat, 3 May 2008 03:52:33 +0000 (+0000) Subject: * Add method to append subtitle X-Git-Tag: 1.31.0-rc.0~47938 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=31a7332a00cdf033845d1951c181b3a3bd314b12;p=lhc%2Fweb%2Fwiklou.git * Add method to append subtitle * Tweak message --- 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; }