Skip to content

Commit

Permalink
Fix PHP8 warning on DedupeFind
Browse files Browse the repository at this point in the history
  • Loading branch information
larssandergreen committed May 30, 2023
1 parent 85b3d15 commit 6898380
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions CRM/Contact/Page/DedupeFind.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ public function browse() {
if ($this->_cid) {
$this->assign('cid', $this->_cid);
}
if (isset($this->_gid) || $this->_gid) {
$this->assign('gid', $this->_gid);
}
$this->assign('gid', $this->_gid ?? NULL);
$this->assign('rgid', $this->_rgid);
}

Expand Down

0 comments on commit 6898380

Please sign in to comment.