From 3d3ee93b12dc41e30dbbc66e50e1bd2f0f8e2dba Mon Sep 17 00:00:00 2001 From: Rob Church Date: Sun, 7 May 2006 18:53:15 +0000 Subject: [PATCH] Better safe than sorry --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 3252fba201..ced28cf35d 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -584,7 +584,7 @@ function wfMsgExt( $key, $options ) { $parserOptions = new ParserOptions(); $parserOptions->setInterfaceMessage( true ); $parser->startExternalParse( $wgTitle, $parserOptions, OT_MSG ); - $string = $parser->transformMsg( $string, $wgMsgParserOptions ); + $string = $parser->transformMsg( $string, $parserOptions ); } if ( in_array('escape', $options) ) { -- 2.20.1