diff options
| author | Shitiz Garg <mail@dragooon.net> | 2014-06-21 03:51:08 +0530 |
|---|---|---|
| committer | Shitiz Garg <mail@dragooon.net> | 2014-06-21 03:51:08 +0530 |
| commit | e51a5791dd66870ae056394efca759338dd4d9c4 (patch) | |
| tree | e945bdd640a327ea49ac8d93de7f59886bde8f24 /phpBB/phpbb | |
| parent | ff057dfc8ec2dd195b263d9ffb4afc5051c52896 (diff) | |
| download | forums-e51a5791dd66870ae056394efca759338dd4d9c4.tar forums-e51a5791dd66870ae056394efca759338dd4d9c4.tar.gz forums-e51a5791dd66870ae056394efca759338dd4d9c4.tar.bz2 forums-e51a5791dd66870ae056394efca759338dd4d9c4.tar.xz forums-e51a5791dd66870ae056394efca759338dd4d9c4.zip | |
[ticket/12730] Update maxlen for type_googleplus to 255
PHPBB3-12730
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v310/profilefield_googleplus.php | 2 | ||||
| -rw-r--r-- | phpBB/phpbb/profilefields/type/type_googleplus.php | 2 |
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' => '', |
