diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-12-05 19:15:37 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-12-05 19:15:37 +0100 |
commit | 72529cd17939cdf9c347de9f2d20a0b766bffc9f (patch) | |
tree | 6f0b7b34f54b5c1cb9a92c18b648ea78ba898caf | |
parent | 375e264a477c044959678fa50851545fc2166de3 (diff) | |
parent | 3322117c3863c443ca1b79d25541bde4c662c0ed (diff) | |
download | forums-72529cd17939cdf9c347de9f2d20a0b766bffc9f.tar forums-72529cd17939cdf9c347de9f2d20a0b766bffc9f.tar.gz forums-72529cd17939cdf9c347de9f2d20a0b766bffc9f.tar.bz2 forums-72529cd17939cdf9c347de9f2d20a0b766bffc9f.tar.xz forums-72529cd17939cdf9c347de9f2d20a0b766bffc9f.zip |
Merge branch '3.1.x' into 3.2.x
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_string.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_string.php b/phpBB/phpbb/profilefields/type/type_string.php index a8432eaae5..8710c8c603 100644 --- a/phpBB/phpbb/profilefields/type/type_string.php +++ b/phpBB/phpbb/profilefields/type/type_string.php @@ -63,7 +63,7 @@ class type_string extends type_string_common $options = array( 0 => array('TITLE' => $this->user->lang['FIELD_LENGTH'], 'FIELD' => '<input type="number" min="0" max="99999" name="field_length" value="' . $field_data['field_length'] . '" />'), 1 => array('TITLE' => $this->user->lang['MIN_FIELD_CHARS'], 'FIELD' => '<input type="number" min="0" max="99999" name="field_minlen" value="' . $field_data['field_minlen'] . '" />'), - 2 => array('TITLE' => $this->user->lang['MAX_FIELD_CHARS'], 'FIELD' => '<input type="number" min="0 max="99999"" name="field_maxlen" value="' . $field_data['field_maxlen'] . '" />'), + 2 => array('TITLE' => $this->user->lang['MAX_FIELD_CHARS'], 'FIELD' => '<input type="number" min="0" max="99999" name="field_maxlen" value="' . $field_data['field_maxlen'] . '" />'), 3 => array('TITLE' => $this->user->lang['FIELD_VALIDATION'], 'FIELD' => '<select name="field_validation">' . $this->validate_options($field_data) . '</select>'), ); |