diff options
author | Mario <mario@mariovavti.com> | 2023-04-23 16:07:57 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-04-23 16:07:57 +0000 |
commit | 3ad0179b629787cb8d7672e351a2abb9847850ad (patch) | |
tree | e9e089d94cede2f8a55cbe225b2f4e2957f285c5 /include/text.php | |
parent | 81f33da4991ed2abaa2422dac2bcc5fe5a2eea74 (diff) | |
download | volse-hubzilla-3ad0179b629787cb8d7672e351a2abb9847850ad.tar.gz volse-hubzilla-3ad0179b629787cb8d7672e351a2abb9847850ad.tar.bz2 volse-hubzilla-3ad0179b629787cb8d7672e351a2abb9847850ad.zip |
fix regression when rendering event items
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 13b385e98..d84b36378 100644 --- a/include/text.php +++ b/include/text.php @@ -1794,7 +1794,8 @@ function prepare_body(&$item,$attach = false,$opts = false) { $s = $poll; } - $event = (($item['obj_type'] === ACTIVITY_OBJ_EVENT) ? format_event_obj($item['obj']) : []); + $event = (in_array($item['obj_type'], ['Event', ACTIVITY_OBJ_EVENT]) ? format_event_obj($item['obj']) : []); + $prep_arr = [ 'item' => $item, 'html' => $event ? $event['content'] : $s, |