1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12730] Update maxlen for type_googleplus to 255

PHPBB3-12730
This commit is contained in:
Shitiz Garg
2014-06-21 03:51:08 +05:30
parent ff057dfc8e
commit e51a5791dd
3 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ class profilefield_googleplus extends \phpbb\db\migration\profilefield_base_migr
'field_ident' => 'phpbb_googleplus',
'field_length' => '20',
'field_minlen' => '3',
'field_maxlen' => '',
'field_maxlen' => '255',
'field_novalue' => '',
'field_default_value' => '',
'field_validation' => '[\w]+',

View File

@@ -31,7 +31,7 @@ class type_googleplus extends type_string
return array(
'field_length' => 20,
'field_minlen' => 3,
'field_maxlen' => '',
'field_maxlen' => 255,
'field_validation' => '[\w]+',
'field_novalue' => '',
'field_default_value' => '',