diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2015-06-04 07:31:04 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-06-04 07:58:39 +0200 |
commit | f6d65e533c62f6deb21342d4901ece24497b433e (patch) | |
tree | f28adf0362d14bcd448f7b65a7aaf38650f923aa /includes/htmlform/HTMLTextField.php | |
parent | c27b2e832fe25651ef2410fae85b41072aae7519 (diff) |
Update to MediaWiki 1.25.1
Diffstat (limited to 'includes/htmlform/HTMLTextField.php')
-rw-r--r-- | includes/htmlform/HTMLTextField.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/includes/htmlform/HTMLTextField.php b/includes/htmlform/HTMLTextField.php index 10bc67f0..88df49db 100644 --- a/includes/htmlform/HTMLTextField.php +++ b/includes/htmlform/HTMLTextField.php @@ -20,6 +20,7 @@ class HTMLTextField extends HTMLFormField { # @todo Enforce pattern, step, required, readonly on the server side as # well $allowedParams = array( + 'type', 'min', 'max', 'pattern', @@ -38,10 +39,13 @@ class HTMLTextField extends HTMLFormField { $attribs += $this->getAttributes( $allowedParams ); + # Extract 'type' + $type = isset( $attribs['type'] ) ? $attribs['type'] : 'text'; + unset( $attribs['type'] ); + # Implement tiny differences between some field variants # here, rather than creating a new class for each one which # is essentially just a clone of this one. - $type = 'text'; if ( isset( $this->mParams['type'] ) ) { switch ( $this->mParams['type'] ) { case 'int': @@ -60,6 +64,7 @@ class HTMLTextField extends HTMLFormField { break; } } + return Html::input( $this->mName, $value, $type, $attribs ); } } |