From 4b7cf7869925b6b00238ff8f95e82dc0fd9e6c7b Mon Sep 17 00:00:00 2001 From: Rob Church Date: Thu, 18 May 2006 11:39:03 +0000 Subject: [PATCH] Fix mismatched parameter order --- includes/XmlFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/XmlFunctions.php b/includes/XmlFunctions.php index 13a0cb0d6f..caec564ae5 100644 --- a/includes/XmlFunctions.php +++ b/includes/XmlFunctions.php @@ -173,7 +173,7 @@ function wfCheckLabel( $label, $name, $id, $checked=false, $attribs=array() ) { * @return string HTML */ function wfRadioLabel( $label, $name, $value, $id, $checked=false, $attribs=array() ) { - return wfRadio( $name, $checked, $value, array( 'id' => $id ) + $attribs ) . + return wfRadio( $name, $value, $checked, array( 'id' => $id ) + $attribs ) . ' ' . wfLabel( $label, $id ); } -- 2.20.1