aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/ThreadItem.php
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-05-05 18:15:58 +0200
committerMax Kostikov <max@kostikov.co>2019-05-05 18:15:58 +0200
commit9b947c837093ec0d762c3b0e2610b17de9dba786 (patch)
treee8fab6bada4cc06932ee64fa717144c5a3262343 /Zotlabs/Lib/ThreadItem.php
parentf56371c79bb401b7f7a627daf8aa15f61f5bc95f (diff)
parent14eb4326e76bddaec8421fdaa87e0c3ac9bb76e0 (diff)
downloadvolse-hubzilla-9b947c837093ec0d762c3b0e2610b17de9dba786.tar.gz
volse-hubzilla-9b947c837093ec0d762c3b0e2610b17de9dba786.tar.bz2
volse-hubzilla-9b947c837093ec0d762c3b0e2610b17de9dba786.zip
Merge branch 'dev' into 'dev'
Threaded comments usability imrovements See merge request hubzilla/core!1633
Diffstat (limited to 'Zotlabs/Lib/ThreadItem.php')
-rw-r--r--Zotlabs/Lib/ThreadItem.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php
index a2bd0dc2d..9161aa182 100644
--- a/Zotlabs/Lib/ThreadItem.php
+++ b/Zotlabs/Lib/ThreadItem.php
@@ -306,7 +306,7 @@ class ThreadItem {
if($this->is_commentable() && $observer) {
$like = array( t("I like this \x28toggle\x29"), t("like"));
$dislike = array( t("I don't like this \x28toggle\x29"), t("dislike"));
- $reply_to = array( t("Reply on this comment"), t("reply"), t("Reply to"), t("Go to previous comment"));
+ $reply_to = array( t("Reply on this comment"), t("reply"), t("Reply to"));
}
if ($shareable) {
@@ -428,6 +428,7 @@ class ThreadItem {
'like' => $like,
'dislike' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike : ''),
'reply_to' => (((! $this->is_toplevel()) && feature_enabled($conv->get_profile_owner(),'reply_to')) ? $reply_to : ''),
+ 'top_hint' => t("Go to previous comment"),
'share' => $share,
'embed' => $embed,
'rawmid' => $item['mid'],