From e66370b637a2bc9fb3fbf7b5b5db80dd38e40b80 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 27 Apr 2015 21:43:11 -0700 Subject: [PATCH] ContentHandler: remove last wfRunHooks() call in includes Change-Id: I074d886e7021a965a9dc32e74974e9882e77930e --- includes/content/ContentHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/content/ContentHandler.php b/includes/content/ContentHandler.php index 9c2435a306..f8d0879df4 100644 --- a/includes/content/ContentHandler.php +++ b/includes/content/ContentHandler.php @@ -629,7 +629,7 @@ abstract class ContentHandler { // hook: get difference engine $differenceEngine = null; - if ( !wfRunHooks( 'GetDifferenceEngine', + if ( !Hooks::run( 'GetDifferenceEngine', array( $context, $old, $new, $refreshCache, $unhide, &$differenceEngine ) ) ) { return $differenceEngine; -- 2.20.1