aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Messages.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-07-23 22:08:42 +0000
committerMario <mario@mariovavti.com>2024-07-23 22:08:42 +0000
commit467e0b32b4e5a25c48b7d006058b051d52c005ac (patch)
tree618fa378aece709f33a24c47094f870a7b36fc82 /Zotlabs/Widget/Messages.php
parent204d91c3c3c0c54b67ac3255a666038533b4fe85 (diff)
downloadvolse-hubzilla-467e0b32b4e5a25c48b7d006058b051d52c005ac.tar.gz
volse-hubzilla-467e0b32b4e5a25c48b7d006058b051d52c005ac.tar.bz2
volse-hubzilla-467e0b32b4e5a25c48b7d006058b051d52c005ac.zip
fa2bi and a php error in mod appman
Diffstat (limited to 'Zotlabs/Widget/Messages.php')
-rw-r--r--Zotlabs/Widget/Messages.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php
index 8654d8e8f..294a982b1 100644
--- a/Zotlabs/Widget/Messages.php
+++ b/Zotlabs/Widget/Messages.php
@@ -170,10 +170,10 @@ class Messages {
switch(intval($item['item_private'])) {
case 1:
- $icon = '<i class="fa fa-lock"></i>';
+ $icon = '<i class="bi bi-lock"></i>';
break;
case 2:
- $icon = '<i class="fa fa-envelope-o"></i>';
+ $icon = '<i class="bi bi-envelope"></i>';
break;
default:
$icon = '';
@@ -293,7 +293,7 @@ class Messages {
$entries[$i]['summary'] = $summary;
$entries[$i]['b64mid'] = (($notice['ntype'] & NOTIFY_INTRO) ? '' : ((str_contains($notice['hash'], '-')) ? $notice['hash'] : basename($notice['link'])));
$entries[$i]['href'] = (($notice['ntype'] & NOTIFY_INTRO) ? $notice['link'] : z_root() . '/hq/' . ((str_contains($notice['hash'], '-')) ? $notice['hash'] : basename($notice['link'])));
- $entries[$i]['icon'] = (($notice['ntype'] & NOTIFY_INTRO) ? '<i class="fa fa-user-plus"></i>' : '');
+ $entries[$i]['icon'] = (($notice['ntype'] & NOTIFY_INTRO) ? '<i class="bi bi-person-plus"></i>' : '');
$i++;
}