diff options
author | Mario <mario@mariovavti.com> | 2021-10-10 09:49:12 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-10-10 09:49:12 +0000 |
commit | 08f65420f47f28cd92813c3cd20e838ab6b4dc12 (patch) | |
tree | 399c5db5f5b4a9f7d95141e6bd4563f15e4c7a75 /Zotlabs | |
parent | b90228b319eb2f76b52ea09af23bc5b6596e280c (diff) | |
download | volse-hubzilla-08f65420f47f28cd92813c3cd20e838ab6b4dc12.tar.gz volse-hubzilla-08f65420f47f28cd92813c3cd20e838ab6b4dc12.tar.bz2 volse-hubzilla-08f65420f47f28cd92813c3cd20e838ab6b4dc12.zip |
messages widget: show user-plus icon for connection requests
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Widget/Messages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Messages.php b/Zotlabs/Widget/Messages.php index 91b82fe2e..c0fef9f75 100644 --- a/Zotlabs/Widget/Messages.php +++ b/Zotlabs/Widget/Messages.php @@ -221,7 +221,7 @@ class Messages { $entries[$i]['summary'] = $summary; $entries[$i]['b64mid'] = basename($notice['link']); $entries[$i]['href'] = (($notice['ntype'] & NOTIFY_INTRO) ? $notice['link'] : z_root() . '/hq/' . basename($notice['link'])); - $entries[$i]['icon'] = ''; + $entries[$i]['icon'] = (($notice['ntype'] & NOTIFY_INTRO) ? '<i class="fa fa-user-plus"></i>' : ''); $i++; } |