diff options
author | Mario <mario@mariovavti.com> | 2020-01-18 20:46:52 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-01-18 20:46:52 +0000 |
commit | bbfe71b0c68579d3a0cc955c12b314e702924940 (patch) | |
tree | 51149c928767880829b56ebd0774b063ba3f0fa2 /Zotlabs | |
parent | 74041838300ee2e20843f68fdaccb2a33b3fa3cb (diff) | |
download | volse-hubzilla-bbfe71b0c68579d3a0cc955c12b314e702924940.tar.gz volse-hubzilla-bbfe71b0c68579d3a0cc955c12b314e702924940.tar.bz2 volse-hubzilla-bbfe71b0c68579d3a0cc955c12b314e702924940.zip |
the address or URL as linktitle should be sufficient
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index ef7b4dbf2..2386a1f0d 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -395,8 +395,8 @@ class ThreadItem { 'consensus' => $consensus, 'conlabels' => $conlabels, 'canvote' => $canvote, - 'linktitle' => sprintf( t('View %s\'s profile - %s'), $profile_name, (($item['author']['xchan_addr']) ? $item['author']['xchan_addr'] : $item['author']['xchan_url'])), - 'olinktitle' => sprintf( t('View %s\'s profile - %s'), $this->get_owner_name(), (($item['owner']['xchan_addr']) ? $item['owner']['xchan_addr'] : $item['owner']['xchan_url'])), + 'linktitle' => (($item['author']['xchan_addr']) ? $item['author']['xchan_addr'] : $item['author']['xchan_url']), + 'olinktitle' => (($item['owner']['xchan_addr']) ? $item['owner']['xchan_addr'] : $item['owner']['xchan_url']), 'llink' => $item['llink'], 'viewthread' => $viewthread, 'to' => t('to'), |