aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/ThreadItem.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-06-27 16:50:06 -0700
committerredmatrix <git@macgirvin.com>2016-06-27 16:50:06 -0700
commit3704ff57cb65dce6ddd17136580e3bf82e7d97f2 (patch)
treec713a977d1a878a68cc314e2f3d4193f258f95cd /Zotlabs/Lib/ThreadItem.php
parentee1d52749733c1de7e88ede6c63f155215e1ae1c (diff)
downloadvolse-hubzilla-3704ff57cb65dce6ddd17136580e3bf82e7d97f2.tar.gz
volse-hubzilla-3704ff57cb65dce6ddd17136580e3bf82e7d97f2.tar.bz2
volse-hubzilla-3704ff57cb65dce6ddd17136580e3bf82e7d97f2.zip
replace [+] and [-] with chevron icons
Diffstat (limited to 'Zotlabs/Lib/ThreadItem.php')
-rw-r--r--Zotlabs/Lib/ThreadItem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php
index f724ac95d..6625b7b52 100644
--- a/Zotlabs/Lib/ThreadItem.php
+++ b/Zotlabs/Lib/ThreadItem.php
@@ -418,7 +418,7 @@ class ThreadItem {
if(($nb_children > $visible_comments) || ($thread_level > 1)) {
$result['children'][0]['comment_firstcollapsed'] = true;
$result['children'][0]['num_comments'] = $comment_count_txt;
- $result['children'][0]['hide_text'] = t('[+] show all');
+ $result['children'][0]['hide_text'] = sprintf( t('%s show all'), '<i class="fa fa-chevron-down"></i>');
if($thread_level > 1) {
$result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
}