Skip to content

Commit

Permalink
Fix PHP8 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Jul 13, 2023
1 parent eaef7b3 commit 5454c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion program/lib/Roundcube/rcube_ldap.php
Original file line number Diff line number Diff line change
Expand Up @@ -1631,7 +1631,7 @@ private function _ldap2result($rec)
if (!empty($this->group_data['name_attr'])) {
$fieldmap['name'] = $this->group_data['name_attr'];
}
else {
else if (!empty($this->prop['groups']['name_attr'])) {
$fieldmap['name'] = $this->prop['groups']['name_attr'];
}
}
Expand Down

0 comments on commit 5454c53

Please sign in to comment.