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 | |
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')
-rw-r--r-- | include/event.php | 2 | ||||
-rw-r--r-- | include/text.php | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/event.php b/include/event.php index 6273279c2..894a1e4f7 100644 --- a/include/event.php +++ b/include/event.php @@ -713,7 +713,7 @@ function event_addtocal($item_id, $uid) { intval($channel['channel_id']) ); - if((! $r) || ($r[0]['obj_type'] !== ACTIVITY_OBJ_EVENT)) + if(!$r || !in_array($r[0]['obj_type'], ['Event', ACTIVITY_OBJ_EVENT])) return false; $item = $r[0]; 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, |