aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/profilefield_googleplus.php2
-rw-r--r--phpBB/phpbb/profilefields/type/type_googleplus.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/profilefield_googleplus.php b/phpBB/phpbb/db/migration/data/v310/profilefield_googleplus.php
index bba20d117b..9bef0a4c0b 100644
--- a/phpBB/phpbb/db/migration/data/v310/profilefield_googleplus.php
+++ b/phpBB/phpbb/db/migration/data/v310/profilefield_googleplus.php
@@ -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]+',
diff --git a/phpBB/phpbb/profilefields/type/type_googleplus.php b/phpBB/phpbb/profilefields/type/type_googleplus.php
index e7896abc5d..df1bcc7f4b 100644
--- a/phpBB/phpbb/profilefields/type/type_googleplus.php
+++ b/phpBB/phpbb/profilefields/type/type_googleplus.php
@@ -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' => '',