X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fhtmlform%2FHTMLCheckField.php;h=5ef4f79fda6449b0cfcd2b31dbc3e7fa79d30298;hb=400d1d300b779bce89135a794e56ef8f684eb7e7;hp=9666c4ea87d61436429ec9362ad16eeb2828360a;hpb=e77a09ccdbf367c78ebbdc0f846f8698d021c070;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/htmlform/HTMLCheckField.php b/includes/htmlform/HTMLCheckField.php index 9666c4ea87..5ef4f79fda 100644 --- a/includes/htmlform/HTMLCheckField.php +++ b/includes/htmlform/HTMLCheckField.php @@ -45,7 +45,7 @@ class HTMLCheckField extends HTMLFormField { * Get the OOUI version of this field. * @since 1.26 * @param string $value - * @return OOUI\\CheckboxInputWidget The checkbox widget. + * @return OOUI\CheckboxInputWidget The checkbox widget. */ public function getInputOOUI( $value ) { if ( !empty( $this->mParams['invert'] ) ) { @@ -56,7 +56,10 @@ class HTMLCheckField extends HTMLFormField { $attr['id'] = $this->mID; $attr['name'] = $this->mName; - $attr += $this->getAttributes( array( 'disabled', 'tabindex' ), array( 'tabindex' => 'tabIndex' ) ); + $attr += $this->getAttributes( + array( 'disabled', 'tabindex' ), + array( 'tabindex' => 'tabIndex' ) + ); if ( $this->mClass !== '' ) { $attr['classes'] = array( $this->mClass );