r108137 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r108136‎ | r108137 | r108138 >
Date:13:00, 5 January 2012
Author:maxsem
Status:ok (Comments)
Tags:
Comment:
Accessor for LinksUpdate's parser output
Modified paths:
  • /trunk/phase3/includes/LinksUpdate.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/LinksUpdate.php
@@ -26,6 +26,7 @@
2727 */
2828 var $mId, //!< Page ID of the article linked from
2929 $mTitle, //!< Title object of the article linked from
 30+ $mParserOutput, //!< Parser output
3031 $mLinks, //!< Map of title strings to IDs for the links in the document
3132 $mImages, //!< DB keys of the images used, in the array key only
3233 $mTemplates, //!< Map of title strings to IDs for the template references, including broken ones
@@ -811,6 +812,14 @@
812813 }
813814
814815 /**
 816+ * Returns parser output
 817+ * @return ParserOutput
 818+ */
 819+ public function getParserOutput() {
 820+ return $this->mParserOutput;
 821+ }
 822+
 823+ /**
815824 * Return the list of images used as generated by the parser
816825 * @return array
817826 */

Follow-up revisions

RevisionCommit summaryAuthorDate
r108157Follow-up r108137: @sincemaxsem18:05, 5 January 2012

Comments

#Comment by Nikerabbit (talk | contribs)   18:03, 5 January 2012

@since?

Status & tagging log