Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
Merge branch '2022.11' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Mar 14, 2022
2 parents f63f44a + 5e20547 commit e481830
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tine20/Calendar/Model/Attender.php
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,9 @@ public static function resolveAttendee($eventAttendees, $resolveDisplayContainer
if ($attender->user_id instanceof Tinebase_Record_Interface) {
// already resolved
continue;
} elseif (isset(self::$_resolvedAttendeesCache[$attender->user_type][$attender->user_id])){
} elseif (isset(self::$_resolvedAttendeesCache[$attender->user_type])
&& isset(self::$_resolvedAttendeesCache[$attender->user_type][$attender->user_id])
){
// already in cache
$attender->user_id = self::$_resolvedAttendeesCache[$attender->user_type][$attender->user_id];
} else {
Expand Down

0 comments on commit e481830

Please sign in to comment.