Skip to content

Commit

Permalink
fix PHP notices
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberroland committed Apr 24, 2024
1 parent 0753c14 commit d860371
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lam/lib/modules.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2028,10 +2028,10 @@ class accountContainer {
$errors[] = array('ERROR', _('The operation was stopped because of the above errors.'));
return $errors;
}
// Set to true if an real error has happened
// Set to true if a real error has happened
$stopprocessing = false;
$finalDnLower = strtolower($this->finalDN);
$dnOrigLower = strtolower($this->dn_orig);
$dnOrigLower = ($this->dn_orig !== null) ? strtolower($this->dn_orig) : '';
if (($finalDnLower !== $dnOrigLower) && (unescapeLdapSpecialCharacters($finalDnLower) !== unescapeLdapSpecialCharacters($dnOrigLower))) {
// move existing DN
if ($this->dn_orig != '') {
Expand Down
3 changes: 3 additions & 0 deletions lam/lib/modules/inetOrgPerson.inc
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ class inetOrgPerson extends baseModule implements passwordService,AccountStatusP
/** business category cache */
private $businessCategoryCache;

/** email cache */
private $emailCheckCache;

/** session variable for existing user certificates in self service */
const SESS_CERTIFICATES_LIST = 'inetOrgPerson_certificatesList';
/** session variable for existing user certificates in self service */
Expand Down

0 comments on commit d860371

Please sign in to comment.