Follow-up r84659: no need to pass parser by reference to event handlers
authorAaron Schulz <aaron@users.mediawiki.org>
Thu, 24 Mar 2011 08:44:42 +0000 (08:44 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Thu, 24 Mar 2011 08:44:42 +0000 (08:44 +0000)
includes/ImageGallery.php
includes/parser/Parser.php

index dba284e..5471b27 100644 (file)
@@ -259,7 +259,7 @@ class ImageGallery
                                        # Give extensions a chance to select the file revision for us
                                        $time = $sha1 = false;
                                        wfRunHooks( 'BeforeParserFetchFileAndTitle',
-                                               array( &$this->mParser, &$nt, &$time, &$sha1, &$descQuery ) );
+                                               array( $this->mParser, &$nt, &$time, &$sha1, &$descQuery ) );
                                        # Fetch and register the file (file title may be different via hooks)
                                        list( $img, $nt ) = $this->mParser->fetchFileAndTitle( $nt, $time, $sha1 );
                                } else {
index c8af287..660566e 100644 (file)
@@ -1911,7 +1911,7 @@ class Parser {
                                # Give extensions a chance to select the file revision for us
                                $time = $sha1 = $descQuery = false;
                                wfRunHooks( 'BeforeParserFetchFileAndTitle',
-                                       array( &$this, &$nt, &$time, &$sha1, &$descQuery ) );
+                                       array( $this, &$nt, &$time, &$sha1, &$descQuery ) );
                                # Fetch and register the file (file title may be different via hooks)
                                list( $file, $nt ) = $this->fetchFileAndTitle( $nt, $time, $sha1 );
                                # Cloak with NOPARSE to avoid replacement in replaceExternalLinks
@@ -4699,7 +4699,7 @@ class Parser {
                # Give extensions a chance to select the file revision for us
                $time = $sha1 = $descQuery = false;
                wfRunHooks( 'BeforeParserFetchFileAndTitle',
-                       array( &$this, &$title, &$time, &$sha1, &$descQuery ) );
+                       array( $this, &$title, &$time, &$sha1, &$descQuery ) );
                # Fetch and register the file (file title may be different via hooks)
                list( $file, $title ) = $this->fetchFileAndTitle( $title, $time, $sha1 );