diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-02-23 09:53:24 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-02-23 09:53:24 +0100 |
commit | c75852455b4c4832ab91e5448c330966f1b60f2a (patch) | |
tree | bf8a7aabfc59754e18eca3326288acdd623a0035 /Zotlabs | |
parent | 27fa15e95ddb5853d804fbba714538026c0d5c3b (diff) | |
download | volse-hubzilla-c75852455b4c4832ab91e5448c330966f1b60f2a.tar.gz volse-hubzilla-c75852455b4c4832ab91e5448c330966f1b60f2a.tar.bz2 volse-hubzilla-c75852455b4c4832ab91e5448c330966f1b60f2a.zip |
use chanlink_hash() instead of chanlink_url() for $profile_link
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index 0ee8e6680..368247d6b 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -136,7 +136,7 @@ class ThreadItem { $filer = ((($conv->get_profile_owner() == local_channel()) && (! array_key_exists('real_uid',$item))) ? t("Save to Folder") : false); $profile_avatar = $item['author']['xchan_photo_m']; - $profile_link = chanlink_url($item['author']['xchan_url']); + $profile_link = chanlink_hash($item['author_xchan']); $profile_name = $item['author']['xchan_name']; $location = format_location($item); |