Removed mImageTimestamps, use the OutputPageParserOutput hook.
authorTim Starling <tstarling@users.mediawiki.org>
Wed, 20 Jun 2007 07:13:56 +0000 (07:13 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Wed, 20 Jun 2007 07:13:56 +0000 (07:13 +0000)
includes/OutputPage.php

index 399c8ed..b1a280e 100644 (file)
@@ -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 ) );
        }