aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/profilefields
diff options
context:
space:
mode:
authorShitiz Garg <mail@dragooon.net>2014-06-21 01:36:01 +0530
committerShitiz Garg <mail@dragooon.net>2014-06-21 03:35:19 +0530
commit83966a575bfac025bd74e193abad3ceade92b4ae (patch)
tree052a5e2e0f22104ead82434053b840a8a73e69b1 /phpBB/phpbb/profilefields
parentea0e073c12b8c1f7136bc21dba0cf6e02aed1166 (diff)
downloadforums-83966a575bfac025bd74e193abad3ceade92b4ae.tar
forums-83966a575bfac025bd74e193abad3ceade92b4ae.tar.gz
forums-83966a575bfac025bd74e193abad3ceade92b4ae.tar.bz2
forums-83966a575bfac025bd74e193abad3ceade92b4ae.tar.xz
forums-83966a575bfac025bd74e193abad3ceade92b4ae.zip
[ticket/12730] Restore field_length to 10 for type_googleplus
PHPBB3-12730
Diffstat (limited to 'phpBB/phpbb/profilefields')
-rw-r--r--phpBB/phpbb/profilefields/type/type_googleplus.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_googleplus.php b/phpBB/phpbb/profilefields/type/type_googleplus.php
index 32c3e77f12..37ec0dd999 100644
--- a/phpBB/phpbb/profilefields/type/type_googleplus.php
+++ b/phpBB/phpbb/profilefields/type/type_googleplus.php
@@ -29,11 +29,11 @@ class type_googleplus extends type_string
public function get_default_option_values()
{
return array(
- 'field_length' => 20,
- 'field_minlen' => 3,
- 'field_maxlen' => '',
- 'field_validation' => '[\w]+',
- 'field_novalue' => '',
+ 'field_length' => 10,
+ 'field_minlen' => 3,
+ 'field_maxlen' => '',
+ 'field_validation' => '[\w]+',
+ 'field_novalue' => '',
'field_default_value' => '',
);
}