A comment in line 299 of ldapprov.module says
// The user name in $form['_account']['#value'] is already changed.
// Has to look for the old name in the authmap.which is not correct in my case. The following if() fails and a user update is not done.
Changing the if to
if (isset($values['name']) && ($row = db_fetch_object($result)) && $values['name'] != $row->authname)
solves the problem.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | ldapprov.module.patch | 615 bytes | arnd |
Comments
Comment #1
arnd commentedSorry, forgot the patch:
Comment #2
arnd commentedFile upload doesn't work in Konqueror on this site :(
Comment #3
miglius commentedCommitted to the cvs. Thanks!