X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fhtmlform%2Ffields%2FHTMLTextField.php;h=60c63d6a070034a561f498827786ceb06ef09116;hb=a23e9cee4e33a678e98a2119f469cb1f538246d4;hp=b51182a2da9a5c29549203b29885f3c2731e1822;hpb=264c8892d66b911498cc9d84f9f6fd288ddcceb2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/htmlform/fields/HTMLTextField.php b/includes/htmlform/fields/HTMLTextField.php index b51182a2da..60c63d6a07 100644 --- a/includes/htmlform/fields/HTMLTextField.php +++ b/includes/htmlform/fields/HTMLTextField.php @@ -85,18 +85,19 @@ class HTMLTextField extends HTMLFormField { 'type', 'min', 'max', - 'pattern', - 'title', 'step', - 'list', + 'title', 'maxlength', 'tabindex', 'disabled', 'required', 'autofocus', - 'multiple', 'readonly', 'autocomplete', + // Only used in HTML mode: + 'pattern', + 'list', + 'multiple', ]; $attribs += $this->getAttributes( $allowedParams ); @@ -117,6 +118,7 @@ class HTMLTextField extends HTMLFormField { switch ( $this->mParams['type'] ) { case 'int': $type = 'number'; + $attribs['step'] = 1; break; case 'float': $type = 'number'; @@ -152,17 +154,22 @@ class HTMLTextField extends HTMLFormField { # @todo Enforce pattern, step, required, readonly on the server side as # well $allowedParams = [ + 'type', + 'min', + 'max', + 'step', + 'title', + 'maxlength', + 'tabindex', + 'disabled', + 'required', 'autofocus', + 'readonly', + 'autocomplete', + // Only used in OOUI mode: 'autosize', - 'disabled', 'flags', 'indicator', - 'maxlength', - 'readonly', - 'required', - 'tabindex', - 'type', - 'autocomplete', ]; $attribs += OOUI\Element::configFromHtmlAttributes( @@ -181,6 +188,9 @@ class HTMLTextField extends HTMLFormField { } $type = $this->getType( $attribs ); + if ( isset( $attribs['step'] ) && $attribs['step'] === 'any' ) { + $attribs['step'] = null; + } return $this->getInputWidget( [ 'id' => $this->mID,