From 98250ce586b4d5f210ef619e06ee467c46a47ad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Loguercio?= Date: Tue, 6 Oct 2015 14:56:28 -0500 Subject: [PATCH] Plugin skype: clickable link - Refs #7875 --- main/social/profile.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main/social/profile.php b/main/social/profile.php index 0b18a1afd9..f709932fa8 100755 --- a/main/social/profile.php +++ b/main/social/profile.php @@ -399,7 +399,11 @@ if ($show_full_profile) { break; default: if (!empty($data)) { - $extra_information_value .= '
'.ucfirst($extraFieldInfo['display_text']).':
'.$data.'
'; + $extra_field_title = ucfirst($extraFieldInfo['display_text']); + if ($extra_field_title == 'Skype') { + $data = '' . get_lang('Chat') . ''; + } + $extra_information_value .= '
' . ucfirst($extraFieldInfo['display_text']) . ':
' . $data . '
'; } break; }