diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-06 15:00:49 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-10 14:38:43 +0100 |
| commit | 6bee91c42915dd613e9714016006b25fa51cb24a (patch) | |
| tree | ad948bc477c7045144c1b9168a3921f472a06f2d /phpBB/phpbb/profilefields | |
| parent | b088bf864bf5827c1801c53c0af1b5a2f89f5b16 (diff) | |
| download | forums-6bee91c42915dd613e9714016006b25fa51cb24a.tar forums-6bee91c42915dd613e9714016006b25fa51cb24a.tar.gz forums-6bee91c42915dd613e9714016006b25fa51cb24a.tar.bz2 forums-6bee91c42915dd613e9714016006b25fa51cb24a.tar.xz forums-6bee91c42915dd613e9714016006b25fa51cb24a.zip | |
[ticket/12169] Convert user_from to profile field location
Missing changes on memberlist view due to missing functionality
PHPBB3-12169
Diffstat (limited to 'phpBB/phpbb/profilefields')
| -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 12a14d9b83..9d241c49ef 100644 --- a/phpBB/phpbb/profilefields/type/type_string.php +++ b/phpBB/phpbb/profilefields/type/type_string.php @@ -60,7 +60,7 @@ class type_string extends type_string_common $options = array( 0 => array('TITLE' => $this->user->lang['FIELD_LENGTH'], 'FIELD' => '<input type="number" min="0" name="field_length" size="5" value="' . $field_data['field_length'] . '" />'), 1 => array('TITLE' => $this->user->lang['MIN_FIELD_CHARS'], 'FIELD' => '<input type="number" min="0" name="field_minlen" size="5" value="' . $field_data['field_minlen'] . '" />'), - 2 => array('TITLE' => $this->user->lang['MAX_FIELD_CHARS'], 'FIELD' => '<input type="number" min="0" size="5" value="' . $field_data['field_maxlen'] . '" />'), + 2 => array('TITLE' => $this->user->lang['MAX_FIELD_CHARS'], 'FIELD' => '<input type="number" min="0" name="field_maxlen" size="5" value="' . $field_data['field_maxlen'] . '" />'), 3 => array('TITLE' => $this->user->lang['FIELD_VALIDATION'], 'FIELD' => '<select name="field_validation">' . $this->validate_options($field_data) . '</select>'), ); |
