From: Andrew Garrett Date: Mon, 28 Apr 2008 12:48:41 +0000 (+0000) Subject: Save the parser output to a member variable of LinksUpdate, so that hooks can access it. X-Git-Tag: 1.31.0-rc.0~48035 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=3e14f2b67926de3bc45b2ae203fb33feb2182419;p=lhc%2Fweb%2Fwiklou.git Save the parser output to a member variable of LinksUpdate, so that hooks can access it. --- diff --git a/includes/LinksUpdate.php b/includes/LinksUpdate.php index 6efa5425f1..202ef6e588 100644 --- a/includes/LinksUpdate.php +++ b/includes/LinksUpdate.php @@ -47,6 +47,7 @@ class LinksUpdate { $this->mTitle = $title; $this->mId = $title->getArticleID(); + $this->mParserOutput = $parserOutput; $this->mLinks = $parserOutput->getLinks(); $this->mImages = $parserOutput->getImages(); $this->mTemplates = $parserOutput->getTemplates();