Commit 1897c819556cff1993a690e6d725df7e72c08fea

Authored by Georg Hopp
1 parent 815f42e1

fix remove of user. As email is in that case a part of credential it must be set…

… to NULL before delete.
Showing 1 changed file with 1 additions and 0 deletions
... ... @@ -54,6 +54,7 @@ applicationLogin(
54 54 // this is an ldap user that has not yet set
55 55 // additional user informations.
56 56 /* @TODO again...change the keys to id's */
  57 + session->user->email = NULL;
57 58 delete(session->user);
58 59 session->user = new(User,
59 60 CRED_PWD(credential).user,
... ...
Please register or login to post a comment