diff options
author | Mario <mario@mariovavti.com> | 2023-02-12 10:43:31 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-02-12 10:43:31 +0000 |
commit | a1eb39872ba5017be218d48f319addf3d40ff05d (patch) | |
tree | f80684b9c5a0d66f2a3da425295cc28401320fc1 /Zotlabs/Lib/Enotify.php | |
parent | 724b8cc6a54c2e778a2d67b2177ecf373f615c64 (diff) | |
download | volse-hubzilla-a1eb39872ba5017be218d48f319addf3d40ff05d.tar.gz volse-hubzilla-a1eb39872ba5017be218d48f319addf3d40ff05d.tar.bz2 volse-hubzilla-a1eb39872ba5017be218d48f319addf3d40ff05d.zip |
implement hq widget author image and notifications updates
Diffstat (limited to 'Zotlabs/Lib/Enotify.php')
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 2015b260d..823e1df29 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -869,7 +869,7 @@ class Enotify { $x = array( 'notify_link' => $item['llink'], 'name' => $item[$who]['xchan_name'], - 'addr' => $item[$who]['xchan_addr'] ?? $item[$who]['xchan_url'], + 'addr' => $item[$who]['xchan_addr'] ? $item[$who]['xchan_addr'] : $item[$who]['xchan_url'], 'url' => $item[$who]['xchan_url'], 'photo' => $item[$who]['xchan_photo_s'], 'when' => (($edit) ? datetime_convert('UTC', date_default_timezone_get(), $item['edited']) : datetime_convert('UTC', date_default_timezone_get(), $item['created'])), |