From 8b5c44b67a314fb0125767d63f09875afd675d4f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sun, 8 Jan 2006 16:57:58 +0000 Subject: [PATCH] * Return true from the hook function so it won't stop other hooks from being run that might be added later --- maintenance/parserTestsParserHook.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/maintenance/parserTestsParserHook.php b/maintenance/parserTestsParserHook.php index ae50ee7f70..be8e9691bd 100644 --- a/maintenance/parserTestsParserHook.php +++ b/maintenance/parserTestsParserHook.php @@ -17,6 +17,8 @@ $wgHooks['ParserTestParser'][] = 'wfParserTestSetup'; function wfParserTestSetup( &$parser ) { $parser->setHook( 'tag', 'wfParserTestHook' ); + + return true; } function wfParserTestHook( $in, $argv ) { -- 2.20.1