diff options
author | 2007-12-07 05:53:02 +0000 | |
---|---|---|
committer | 2007-12-07 05:53:02 +0000 | |
commit | 80f03f16c9aa3e2b27f087677c5a43e9e9175a8f (patch) | |
tree | 712f47d466525359ea883a075d40bcab8ebca0c1 /contrib | |
parent | Bug 407036: buglist.css no longer loaded by buglists - Patch by Frédéri... (diff) | |
download | bugzilla-80f03f16c9aa3e2b27f087677c5a43e9e9175a8f.tar.gz bugzilla-80f03f16c9aa3e2b27f087677c5a43e9e9175a8f.tar.bz2 bugzilla-80f03f16c9aa3e2b27f087677c5a43e9e9175a8f.zip |
Bug 397575: syncLDAP outputs HTML does not enable/disable accounts
Patch by Emmanuel Seyman <eseyman@linagora.com> r=LpSolit a=LpSolit
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/syncLDAP.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/syncLDAP.pl b/contrib/syncLDAP.pl index 07fa6f46b..cf02ed441 100755 --- a/contrib/syncLDAP.pl +++ b/contrib/syncLDAP.pl @@ -276,7 +276,7 @@ if($readonly == 0) { Bugzilla::User->create({ login_name => $key, realname => @$value{'realname'}, - password => '*'}); + cryptpassword => '*'}); } print "done!\n" unless $quiet; } |