diff options
author | friendica <info@friendica.com> | 2013-01-11 14:40:44 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-11 14:40:44 -0800 |
commit | b3d1b8332f39259efe258a1d0ddb054dabf82823 (patch) | |
tree | acd63ed7338306f40bd0ff9102899cea042cbd72 /include/Contact.php | |
parent | dd6a88244bdf80888710070d41efccde9f247a6c (diff) | |
download | volse-hubzilla-b3d1b8332f39259efe258a1d0ddb054dabf82823.tar.gz volse-hubzilla-b3d1b8332f39259efe258a1d0ddb054dabf82823.tar.bz2 volse-hubzilla-b3d1b8332f39259efe258a1d0ddb054dabf82823.zip |
use correct param for connect link
Diffstat (limited to 'include/Contact.php')
-rw-r--r-- | include/Contact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Contact.php b/include/Contact.php index e52b5c9cf..14332c417 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -16,7 +16,7 @@ function vcard_from_xchan($xchan) { return replace_macros(get_markup_template('xchan_vcard.tpl'),array( '$name' => $xchan['xchan_name'], '$photo' => $xchan['xchan_photo_l'], - '$url' => $xchan['xchan_addr'], + '$follow' => $xchan['xchan_addr'], '$connect' => $connect )); } |