From: Aaron Schulz Date: Wed, 22 Jul 2009 04:53:59 +0000 (+0000) Subject: Fixed php 5.3 reference error X-Git-Tag: 1.31.0-rc.0~40772 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=641ab5b79ca7085cbe84dd73d864920887306ab3;p=lhc%2Fweb%2Fwiklou.git Fixed php 5.3 reference error --- 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;