diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-02-23 11:41:03 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-02-23 11:41:03 +0100 |
commit | 5012baba154979b361690cc3bae7471460331878 (patch) | |
tree | 59a4f21ec2a923515cc6c7ba10be9bc00f522512 /Zotlabs/Lib | |
parent | 41c67fa345aeddc7f44378e37c4534701540b691 (diff) | |
download | volse-hubzilla-5012baba154979b361690cc3bae7471460331878.tar.gz volse-hubzilla-5012baba154979b361690cc3bae7471460331878.tar.bz2 volse-hubzilla-5012baba154979b361690cc3bae7471460331878.zip |
one more place to use chanlink_hash() instead of chanlink_url()
Diffstat (limited to 'Zotlabs/Lib')
-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 368247d6b..07b782309 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -767,7 +767,7 @@ class ThreadItem { return; if($this->is_toplevel() && ($this->get_data_value('author_xchan') != $this->get_data_value('owner_xchan'))) { - $this->owner_url = chanlink_url($this->data['owner']['xchan_url']); + $this->owner_url = chanlink_hash($this->data['owner']['xchan_hash']); $this->owner_photo = $this->data['owner']['xchan_photo_m']; $this->owner_name = $this->data['owner']['xchan_name']; $this->wall_to_wall = true; |