From: Tim Starling Date: Wed, 20 Jun 2007 07:13:56 +0000 (+0000) Subject: Removed mImageTimestamps, use the OutputPageParserOutput hook. X-Git-Tag: 1.31.0-rc.0~52491 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_aide%28?a=commitdiff_plain;h=ceac253cbbdb62418e2e8cc92c2c4fabbe6d1dd7;p=lhc%2Fweb%2Fwiklou.git Removed mImageTimestamps, use the OutputPageParserOutput hook. --- 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 ) ); }