From 15b57bc315a01925f7256549159e89910b142f26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Laxstr=C3=B6m?= Date: Sat, 25 May 2013 08:43:27 +0000 Subject: [PATCH] Fix some incorrect hook annotations Change-Id: I2594b50c07eafbee68df29152066c81a79035a9e --- UniversalLanguageSelector.hooks.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UniversalLanguageSelector.hooks.php b/UniversalLanguageSelector.hooks.php index 2f175d94..3624ad2d 100644 --- a/UniversalLanguageSelector.hooks.php +++ b/UniversalLanguageSelector.hooks.php @@ -35,10 +35,10 @@ class UniversalLanguageSelectorHooks { } /** - * BeforePageDisplay hook handler. * @param $out OutputPage * @param $skin Skin * @return bool + * Hook: BeforePageDisplay */ public static function addModules( $out, $skin ) { global $wgULSGeoService; @@ -62,10 +62,10 @@ class UniversalLanguageSelectorHooks { } /** - * ResourceLoaderTestModules hook handler. * @param $testModules array of javascript testing modules. 'qunit' is fed using tests/qunit/QUnitTestResources.php. * @param $resourceLoader ResourceLoader * @return bool + * Hook: ResourceLoaderTestModules */ public static function addTestModules( array &$testModules, ResourceLoader &$resourceLoader ) { $testModules['qunit']['ext.uls.tests'] = array( @@ -80,7 +80,7 @@ class UniversalLanguageSelectorHooks { /** * Add some tabs for navigation for users who do not use Ajax interface. - * Hooks: SkinTemplateNavigation, SkinTemplateTabs + * Hook: PersonalUrls */ static function addPersonalBarTrigger( array &$personal_urls, &$title ) { global $wgLang, $wgUser, $wgULSPosition;