diff options
author | Mario <mario@mariovavti.com> | 2024-10-04 11:07:50 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-04 11:07:50 +0000 |
commit | 4de9cb11420af855a3fe8f8db498aab42ab83e07 (patch) | |
tree | 5ab74ffee33e62487261f53f5db2ace5a0e30fc9 /Zotlabs | |
parent | 158ddfb009991878310eafb92d83c35e4611c993 (diff) | |
download | volse-hubzilla-4de9cb11420af855a3fe8f8db498aab42ab83e07.tar.gz volse-hubzilla-4de9cb11420af855a3fe8f8db498aab42ab83e07.tar.bz2 volse-hubzilla-4de9cb11420af855a3fe8f8db498aab42ab83e07.zip |
more fa2bi fixes
(cherry picked from commit 8f890fb6fa43ee8ee13ef9254e73a68280d545e0)
Co-authored-by: Mario <mario@mariovavti.com>
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Widget/Channel_activities.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Widget/Channel_activities.php b/Zotlabs/Widget/Channel_activities.php index a799ea81e..debaf20d4 100644 --- a/Zotlabs/Widget/Channel_activities.php +++ b/Zotlabs/Widget/Channel_activities.php @@ -91,7 +91,7 @@ class Channel_activities { self::$activities['photos'] = [ 'label' => t('Photos'), - 'icon' => 'photo', + 'icon' => 'image', 'url' => z_root() . '/photos/' . self::$channel['channel_address'], 'date' => $r[0]['edited'], 'items' => $i, @@ -123,7 +123,7 @@ class Channel_activities { self::$activities['files'] = [ 'label' => t('Files'), - 'icon' => 'folder-open', + 'icon' => 'folder', 'url' => z_root() . '/cloud/' . self::$channel['channel_address'], 'date' => $r[0]['edited'], 'items' => $i, @@ -166,7 +166,7 @@ class Channel_activities { self::$activities['webpages'] = [ 'label' => t('Webpages'), - 'icon' => 'newspaper-o', + 'icon' => 'layout-text-sidebar', 'url' => z_root() . '/webpages/' . self::$channel['channel_address'], 'date' => $r[0]['edited'], 'items' => $i, @@ -237,7 +237,7 @@ class Channel_activities { self::$activities['channels'] = [ 'label' => t('Channels'), - 'icon' => 'home', + 'icon' => 'house', 'url' => z_root() . '/manage', 'date' => datetime_convert(), 'items' => $i, |