From 3e14f2b67926de3bc45b2ae203fb33feb2182419 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Mon, 28 Apr 2008 12:48:41 +0000 Subject: [PATCH] Save the parser output to a member variable of LinksUpdate, so that hooks can access it. --- includes/LinksUpdate.php | 1 + 1 file changed, 1 insertion(+) 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(); -- 2.20.1