Skip to content

Commit

Permalink
Merge pull request #27164 from seamuslee001/acl_notice_error
Browse files Browse the repository at this point in the history
[REF] Fix Notice Errors on ACL listing page by assigning fields consi…
  • Loading branch information
seamuslee001 authored Aug 25, 2023
2 parents 3a85b8d + 99a9f18 commit 4ce419a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CRM/ACL/Page/ACL.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ public function browse() {
$acl[$dao->id]['object'] = $event[$acl[$dao->id]['object_id']] ?? NULL;
$acl[$dao->id]['object_name'] = ts('Event');
break;

default:
$acl[$dao->id]['object'] = $acl[$dao->id]['object_name'] = NULL;
}

// form all action links
Expand Down

0 comments on commit 4ce419a

Please sign in to comment.