From 474dc577822e8c1937b35040de563cc81f0867cf Mon Sep 17 00:00:00 2001 From: Shitiz Garg Date: Fri, 20 Jun 2014 17:24:03 +0530 Subject: [PATCH] [ticket/12730] Add missing brackets to type_googleplus.php PHPBB3-12730 --- phpBB/phpbb/profilefields/type/type_googleplus.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpBB/phpbb/profilefields/type/type_googleplus.php b/phpBB/phpbb/profilefields/type/type_googleplus.php index a58aa6a97f..32c3e77f12 100644 --- a/phpBB/phpbb/profilefields/type/type_googleplus.php +++ b/phpBB/phpbb/profilefields/type/type_googleplus.php @@ -49,7 +49,9 @@ class type_googleplus extends type_string } if (!is_numeric($field_value)) + { $field_value = '+' . $field_value; + } return $field_value; }