X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fhtmlform%2FHTMLRadioField.php;h=0f0054089014780dab5ec91a01a2c8f3bdbdf1ea;hb=fbcb3d5f980a9be0611424764d6f18e749e4c1c9;hp=c52f0a8724b35356ddefcc2572b75dd8512a043d;hpb=c7ac32650b61d1a97caa3fea907ba778e54925fb;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/htmlform/HTMLRadioField.php b/includes/htmlform/HTMLRadioField.php index c52f0a8724..0f00540890 100644 --- a/includes/htmlform/HTMLRadioField.php +++ b/includes/htmlform/HTMLRadioField.php @@ -28,9 +28,9 @@ class HTMLRadioField extends HTMLFormField { * This returns a block of all the radio options, in one cell. * @see includes/HTMLFormField#getInputHTML() * - * @param $value String + * @param string $value * - * @return String + * @return string */ function getInputHTML( $value ) { $html = $this->formatOptions( $this->getOptions(), strval( $value ) ); @@ -56,7 +56,7 @@ class HTMLRadioField extends HTMLFormField { $html .= ' ' . Html::rawElement( 'div', - array( 'class' => 'mw-htmlform-flatlist-item' ), + array( 'class' => 'mw-htmlform-flatlist-item mw-ui-radio' ), $radio ); }