From 114c072177f29f68448784fb3beaeaebc419b80d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Tue, 28 Dec 2010 09:54:25 +0000 Subject: [PATCH] Follow up r23393, also remove the getter method --- includes/parser/ParserOutput.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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; } -- 2.20.1