From: Aaron Schulz Date: Fri, 24 Jul 2009 12:08:06 +0000 (+0000) Subject: 5.3 reference error fix X-Git-Tag: 1.31.0-rc.0~40746 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=cec69a840a820542f2b52ec21d59eb28415219d2;p=lhc%2Fweb%2Fwiklou.git 5.3 reference error fix --- 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;