diff options
author | Mario <mario@mariovavti.com> | 2024-08-02 08:06:15 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-08-02 08:06:15 +0000 |
commit | 3d3fcd7334dc9123005d7d736b1a243113d67902 (patch) | |
tree | 414836146cfdc1f0d3736f0bd8a2b1251fa51768 /Zotlabs | |
parent | 61c03e4b4e1afd7593a57119198dd38845485887 (diff) | |
download | volse-hubzilla-3d3fcd7334dc9123005d7d736b1a243113d67902.tar.gz volse-hubzilla-3d3fcd7334dc9123005d7d736b1a243113d67902.tar.bz2 volse-hubzilla-3d3fcd7334dc9123005d7d736b1a243113d67902.zip |
fa2bi: some sed woodoo on templates and manual fixes in js and php files
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Widget/Activity_filter.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Zotlabs/Widget/Activity_filter.php b/Zotlabs/Widget/Activity_filter.php index a8a00bda6..6884963d4 100644 --- a/Zotlabs/Widget/Activity_filter.php +++ b/Zotlabs/Widget/Activity_filter.php @@ -42,7 +42,7 @@ class Activity_filter { $tabs[] = [ 'label' => t('Direct Messages'), - 'icon' => 'envelope-o', + 'icon' => 'envelope', 'url' => z_root() . '/' . $cmd . '/?f=&dm=1', 'sel' => $dm_active, 'title' => t('Show direct (private) messages') @@ -51,7 +51,7 @@ class Activity_filter { if(feature_enabled(local_channel(),'events_tab')) { $tabs[] = [ 'label' => t('Events'), - 'icon' => 'calendar', + 'icon' => 'calendar-date', 'url' => z_root() . '/' . $cmd . '/?verb=%2EEvent', 'sel' => $events_active, 'title' => t('Show posts that include events') @@ -93,7 +93,7 @@ class Activity_filter { $tabs[] = [ 'id' => 'privacy_groups', 'label' => t('Privacy Groups'), - 'icon' => 'users', + 'icon' => 'person', 'url' => '#', 'sel' => (($filter_active == 'group') ? true : false), 'title' => t('Show my privacy groups'), @@ -128,7 +128,7 @@ class Activity_filter { $tabs[] = [ 'id' => 'forums', 'label' => t('Forums'), - 'icon' => 'comments-o', + 'icon' => 'chat-quote', 'url' => '#', 'sel' => (($filter_active == 'forums') ? true : false), 'title' => t('Show forums'), @@ -161,7 +161,7 @@ class Activity_filter { $tabs[] = [ 'label' => t('Personal Posts'), - 'icon' => 'user-circle', + 'icon' => 'person-circle', 'url' => z_root() . '/' . $cmd . '/?f=&conv=1', 'sel' => $conv_active, 'title' => t('Show posts that mention or involve me') @@ -233,7 +233,7 @@ class Activity_filter { if($filter_active) { $reset = [ 'label' => '', - 'icon' => 'remove', + 'icon' => 'x-lg', 'url'=> z_root() . '/' . $cmd, 'sel'=> '', 'title' => t('Remove active filter') |