From 21237ddba603640e4eadd9ca18d4fd5f37b92bdf Mon Sep 17 00:00:00 2001 From: FlxAlbroscheit Date: Tue, 10 Mar 2015 22:44:57 +0100 Subject: [PATCH] Give access to contact's profile-URL --- mod/contacts.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/contacts.php b/mod/contacts.php index a3263f395..570672d4e 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -32,7 +32,8 @@ function contacts_init(&$a) { $a->data['contact'] = $r[0]; $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array( '$name' => $a->data['contact']['name'], - '$photo' => $a->data['contact']['photo'] + '$photo' => $a->data['contact']['photo'], + '$url' => $a->data['contact']['url'] )); $follow_widget = ''; }