Skip to content

Commit

Permalink
Tracking: fix array access (38381)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmitz-ilias committed Oct 27, 2023
1 parent 0e8f06d commit 210ca73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ protected function fillRow(array $a_set): void
// #7694
if (!$a_set["active"] || ($a_set["privacy_conflict"] ?? false)) {
$mess = array();
if ($a_set["privacy_conflict"]) {
if ($a_set["privacy_conflict"] ?? false) {
$mess[] = $this->lng->txt("status_no_permission");
} elseif (!$a_set["active"]) {
$mess[] = $this->lng->txt("inactive");
Expand Down

0 comments on commit 210ca73

Please sign in to comment.