From: Rob Church Date: Thu, 18 May 2006 11:39:03 +0000 (+0000) Subject: Fix mismatched parameter order X-Git-Tag: 1.31.0-rc.0~57092 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=commitdiff_plain;h=4b7cf7869925b6b00238ff8f95e82dc0fd9e6c7b;p=lhc%2Fweb%2Fwiklou.git Fix mismatched parameter order --- 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 ); }