From 641ab5b79ca7085cbe84dd73d864920887306ab3 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 22 Jul 2009 04:53:59 +0000 Subject: [PATCH] Fixed php 5.3 reference error --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 8a4347931f..73faacc597 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -970,7 +970,7 @@ class EditPage { $oldtext = $this->mArticle->getContent(); // Run post-section-merge edit filter - if ( !wfRunHooks( 'EditFilterMerged', array( $this, $text, &$this->hookError, $this->summary ) ) ) { + if ( !wfRunHooks( 'EditFilterMerged', array( &$this, $text, &$this->hookError, $this->summary ) ) ) { # Error messages etc. could be handled within the hook... wfProfileOut( $fname ); return self::AS_HOOK_ERROR; -- 2.20.1