r79102 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r79101‎ | r79102 | r79103 >
Date:09:54, 28 December 2010
Author:nikerabbit
Status:ok
Tags:
Comment:
Follow up r23393, also remove the getter method
Modified paths:
  • /trunk/phase3/includes/parser/ParserOutput.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/parser/ParserOutput.php
@@ -100,8 +100,7 @@
101101 }
102102 }
103103
104 -class ParserOutput extends CacheTime
105 -{
 104+class ParserOutput extends CacheTime {
106105 var $mText, # The output text
107106 $mLanguageLinks, # List of the full text of language links, in the order they appear
108107 $mCategories, # Map of category names to sort keys
@@ -149,7 +148,6 @@
150149 function getNoGallery() { return $this->mNoGallery; }
151150 function getHeadItems() { return $this->mHeadItems; }
152151 function getModules() { return $this->mModules; }
153 - function getSubtitle() { return $this->mSubtitle; }
154152 function getOutputHooks() { return (array)$this->mOutputHooks; }
155153 function getWarnings() { return array_keys( $this->mWarnings ); }
156154 function getIndexPolicy() { return $this->mIndexPolicy; }
@@ -293,7 +291,7 @@
294292 * @return String
295293 */
296294 public function getDisplayTitle() {
297 - $t = $this->getTitleText( );
 295+ $t = $this->getTitleText();
298296 if( $t === '' ) {
299297 return false;
300298 }

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r23393Fix up DISPLAYTITLE and enable per default:...robchurch15:51, 25 June 2007

Status & tagging log