diff options
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Activity_filter.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Widget/Activity_filter.php b/Zotlabs/Widget/Activity_filter.php index 36e24342d..18d81d8e3 100644 --- a/Zotlabs/Widget/Activity_filter.php +++ b/Zotlabs/Widget/Activity_filter.php @@ -89,7 +89,6 @@ class Activity_filter { $filter_active = 'file'; } $tsub[] = [ - 'id' => 'saved_folders', 'label' => $t['term'], 'icon' => '', 'url' => z_root() . '/' . $cmd . '/?f=&file=' . $t['term'], @@ -99,6 +98,7 @@ class Activity_filter { } $tabs[] = [ + 'id' => 'saved_folders', 'label' => t('Saved Folders'), 'icon' => 'folder', 'url' => '#', @@ -120,7 +120,6 @@ class Activity_filter { $filter_active = 'forums'; } $fsub[] = [ - 'id' => 'forums', 'label' => $f['xchan_name'], 'img' => $f['xchan_photo_s'], 'url' => (($f['private_forum']) ? $f['xchan_url'] : z_root() . '/' . $cmd . '/?f=&pf=1&cid=' . $f['abook_id']), @@ -131,6 +130,7 @@ class Activity_filter { } $tabs[] = [ + 'id' => 'forums', 'label' => t('Forums'), 'icon' => 'comments-o', 'url' => '#', |