From: Alexandre Emsenhuber Date: Thu, 7 May 2009 16:51:45 +0000 (+0000) Subject: fix E_PARSE from r50310 X-Git-Tag: 1.31.0-rc.0~41853 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=2a82a66505fef4ac354d6a376c7ba751c99f93e4;p=lhc%2Fweb%2Fwiklou.git fix E_PARSE from r50310 --- diff --git a/includes/diff/DifferenceEngine.php b/includes/diff/DifferenceEngine.php index a9a88a912d..343be247e7 100644 --- a/includes/diff/DifferenceEngine.php +++ b/includes/diff/DifferenceEngine.php @@ -623,7 +623,7 @@ CONTROL; */ private function initDiffEngines() { global $wgExternalDiffEngine; - if ( $wgExternalDiffEngine == 'wikidiff' && !function_exists( 'wikidiff_do_diff' ) { + if ( $wgExternalDiffEngine == 'wikidiff' && !function_exists( 'wikidiff_do_diff' ) ) { wfProfileIn( __METHOD__ . '-php_wikidiff.so' ); @dl( 'php_wikidiff.so' ); wfProfileOut( __METHOD__ . '-php_wikidiff.so' );