From: Niklas Laxström Date: Tue, 28 Dec 2010 09:54:25 +0000 (+0000) Subject: Follow up r23393, also remove the getter method X-Git-Tag: 1.31.0-rc.0~33038 X-Git-Url: http://git.cyclocoop.org/clavettes/images/siteon3.jpg?a=commitdiff_plain;h=114c072177f29f68448784fb3beaeaebc419b80d;p=lhc%2Fweb%2Fwiklou.git Follow up r23393, also remove the getter method --- diff --git a/includes/parser/ParserOutput.php b/includes/parser/ParserOutput.php index 1e4765db7a..6a60a03be3 100644 --- a/includes/parser/ParserOutput.php +++ b/includes/parser/ParserOutput.php @@ -100,8 +100,7 @@ class CacheTime { } } -class ParserOutput extends CacheTime -{ +class ParserOutput extends CacheTime { var $mText, # The output text $mLanguageLinks, # List of the full text of language links, in the order they appear $mCategories, # Map of category names to sort keys @@ -149,7 +148,6 @@ class ParserOutput extends CacheTime function getNoGallery() { return $this->mNoGallery; } function getHeadItems() { return $this->mHeadItems; } function getModules() { return $this->mModules; } - function getSubtitle() { return $this->mSubtitle; } function getOutputHooks() { return (array)$this->mOutputHooks; } function getWarnings() { return array_keys( $this->mWarnings ); } function getIndexPolicy() { return $this->mIndexPolicy; } @@ -293,7 +291,7 @@ class ParserOutput extends CacheTime * @return String */ public function getDisplayTitle() { - $t = $this->getTitleText( ); + $t = $this->getTitleText(); if( $t === '' ) { return false; }