From ceac253cbbdb62418e2e8cc92c2c4fabbe6d1dd7 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Wed, 20 Jun 2007 07:13:56 +0000 Subject: [PATCH] Removed mImageTimestamps, use the OutputPageParserOutput hook. --- includes/OutputPage.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 399c8ed1aa..b1a280e3d3 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -55,7 +55,6 @@ class OutputPage { $this->mRevisionId = null; $this->mNewSectionLink = false; $this->mTemplateIds = array(); - $this->mImageTimestamps = array(); } public function redirect( $url, $responsecode = '302' ) { @@ -388,7 +387,6 @@ class OutputPage { $this->mHeadItems = array_merge( $this->mHeadItems, (array)$parserOutput->mHeadItems ); // Versioning... $this->mTemplateIds += (array)$parserOutput->mTemplateIds; - $this->mImageTimestamps += (array)$parserOutput->mImageTimestamps; wfRunHooks( 'OutputPageParserOutput', array( &$this, $parserOutput ) ); } -- 2.20.1