diff options
author | zotlabs <mike@macgirvin.com> | 2018-06-03 23:16:40 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-06-03 23:16:40 -0700 |
commit | 57231a88076289c5dbeff70c9b92dbbe2bcefd8d (patch) | |
tree | a42e4bc14794934657e2e8b41da5f820bced7042 /Zotlabs | |
parent | dd9f7ef6e926cb53f68216f58769552a6355993c (diff) | |
download | volse-hubzilla-57231a88076289c5dbeff70c9b92dbbe2bcefd8d.tar.gz volse-hubzilla-57231a88076289c5dbeff70c9b92dbbe2bcefd8d.tar.bz2 volse-hubzilla-57231a88076289c5dbeff70c9b92dbbe2bcefd8d.zip |
wrong level
Diffstat (limited to 'Zotlabs')
-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' => '#', |