diff options
author | Max Kostikov <max@kostikov.co> | 2019-05-05 18:10:53 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-05-05 18:10:53 +0200 |
commit | 89a3e8fcc7d8842bc26c67d07586e8c9c2929887 (patch) | |
tree | 653b3e541fc3351cebe3c58dfb8c1476ba3ab3fc | |
parent | 6fd5133bed320cf7c7184608c300b09bf4ef0362 (diff) | |
download | volse-hubzilla-89a3e8fcc7d8842bc26c67d07586e8c9c2929887.tar.gz volse-hubzilla-89a3e8fcc7d8842bc26c67d07586e8c9c2929887.tar.bz2 volse-hubzilla-89a3e8fcc7d8842bc26c67d07586e8c9c2929887.zip |
Use own variable for "Go to previous comment" hint
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 3 |
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'], |