* Add method to append subtitle
authorAaron Schulz <aaron@users.mediawiki.org>
Sat, 3 May 2008 03:52:33 +0000 (03:52 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Sat, 3 May 2008 03:52:33 +0000 (03:52 +0000)
* Tweak message

includes/OutputPage.php

index e760d64..190042e 100644 (file)
@@ -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; }