From 7ad814d427c11f2c24460d939302c660a2725819 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 27 Apr 2015 21:53:11 -0700 Subject: [PATCH] wfRunHooks() -> Hooks::run() Change-Id: Ib2c61f675bb7bbd44cec5b7a9ab68721865b4b09 --- SkinVector.php | 2 +- VectorTemplate.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SkinVector.php b/SkinVector.php index f5e3634..f287df6 100644 --- a/SkinVector.php +++ b/SkinVector.php @@ -67,7 +67,7 @@ class SkinVector extends SkinTemplate { parent::setupSkinUserCss( $out ); $styles = array( 'mediawiki.skinning.interface', 'skins.vector.styles' ); - wfRunHooks( 'SkinVectorStyleModules', array( $this, &$styles ) ); + Hooks::run( 'SkinVectorStyleModules', array( $this, &$styles ) ); $out->addModuleStyles( $styles ); } diff --git a/VectorTemplate.php b/VectorTemplate.php index fa3de5e..1437fa6 100644 --- a/VectorTemplate.php +++ b/VectorTemplate.php @@ -341,7 +341,7 @@ class VectorTemplate extends BaseTemplate {