From cec69a840a820542f2b52ec21d59eb28415219d2 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 24 Jul 2009 12:08:06 +0000 Subject: [PATCH] 5.3 reference error fix --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 73faacc597..0b247f154c 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -882,7 +882,7 @@ class EditPage { } // Run post-section-merge edit filter - if ( !wfRunHooks( 'EditFilterMerged', array( $this, $this->textbox1, &$this->hookError, $this->summary ) ) ) { + if ( !wfRunHooks( 'EditFilterMerged', array( &$this, $this->textbox1, &$this->hookError, $this->summary ) ) ) { # Error messages etc. could be handled within the hook... wfProfileOut( $fname ); return self::AS_HOOK_ERROR; -- 2.20.1