aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/profilefields
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-07-27 20:06:53 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-07-27 20:06:53 +0200
commit8a6d3f2b1d306d7dcc7480899bb30737b7cb4092 (patch)
tree3dc89437e9a19f3b2eb5fce3432517062fdb6f8d /phpBB/phpbb/profilefields
parente94f24c8217d0a8837fd245292169e68c640c2c7 (diff)
parent27f15c0d5b661c15eeaf98928128b7b176186954 (diff)
downloadforums-8a6d3f2b1d306d7dcc7480899bb30737b7cb4092.tar
forums-8a6d3f2b1d306d7dcc7480899bb30737b7cb4092.tar.gz
forums-8a6d3f2b1d306d7dcc7480899bb30737b7cb4092.tar.bz2
forums-8a6d3f2b1d306d7dcc7480899bb30737b7cb4092.tar.xz
forums-8a6d3f2b1d306d7dcc7480899bb30737b7cb4092.zip
Merge pull request #2719 from lucifer4o/ticket/12791
[ticket/12791] String profile fields do not use links ... * lucifer4o/ticket/12791: [ticket/12791] Changed the if check [ticket/12791] String profile fields do not use links ...
Diffstat (limited to 'phpBB/phpbb/profilefields')
-rw-r--r--phpBB/phpbb/profilefields/manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/profilefields/manager.php b/phpBB/phpbb/profilefields/manager.php
index f3b1676799..98802d2209 100644
--- a/phpBB/phpbb/profilefields/manager.php
+++ b/phpBB/phpbb/profilefields/manager.php
@@ -397,7 +397,7 @@ class manager
}
$field_desc = $contact_url = '';
- if ($use_contact_fields)
+ if ($use_contact_fields && $ident_ary['data']['field_is_contact'])
{
$value = $profile_field->get_profile_contact_value($ident_ary['value'], $ident_ary['data']);
$field_desc = $this->user->lang($ident_ary['data']['field_contact_desc']);