From: Ævar Arnfjörð Bjarmason Date: Sun, 8 Jan 2006 16:57:58 +0000 (+0000) Subject: * Return true from the hook function so it won't stop other hooks from being X-Git-Tag: 1.6.0~678 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=8b5c44b67a314fb0125767d63f09875afd675d4f;p=lhc%2Fweb%2Fwiklou.git * Return true from the hook function so it won't stop other hooks from being run that might be added later --- 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 ) {