From 83966a575bfac025bd74e193abad3ceade92b4ae Mon Sep 17 00:00:00 2001 From: Shitiz Garg Date: Sat, 21 Jun 2014 01:36:01 +0530 Subject: [PATCH] [ticket/12730] Restore field_length to 10 for type_googleplus PHPBB3-12730 --- phpBB/phpbb/profilefields/type/type_googleplus.php | 10 +++++----- 1 file 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' => '', ); }