diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-20 17:24:03 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-21 03:31:45 +0530 |
commit | 474dc577822e8c1937b35040de563cc81f0867cf (patch) | |
tree | e54d4bf6765644cd5d109f7cb986c382e2bc89d6 /phpBB/phpbb/profilefields | |
parent | b516da649f36760d976bd3a620b53f463dbd9291 (diff) | |
download | forums-474dc577822e8c1937b35040de563cc81f0867cf.tar forums-474dc577822e8c1937b35040de563cc81f0867cf.tar.gz forums-474dc577822e8c1937b35040de563cc81f0867cf.tar.bz2 forums-474dc577822e8c1937b35040de563cc81f0867cf.tar.xz forums-474dc577822e8c1937b35040de563cc81f0867cf.zip |
[ticket/12730] Add missing brackets to type_googleplus.php
PHPBB3-12730
Diffstat (limited to 'phpBB/phpbb/profilefields')
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_googleplus.php | 2 |
1 files changed, 2 insertions, 0 deletions
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; } |