X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=update.cgi;h=c7caafd010782830ba0dc096e4189ca98dea86ca;hb=7e071849e84e3605d36cdef39332fe58e2dc76c7;hp=13d847b1a984ac6d79803c7092508db4d1da72f8;hpb=e9a3d262aa18e6469b9372741210014f51b0c9a7;p=mirror%2Fuserdir-ldap-cgi.git diff --git a/update.cgi b/update.cgi index 13d847b..c7caafd 100755 --- a/update.cgi +++ b/update.cgi @@ -240,16 +240,16 @@ if (!($query->param('doupdate'))) { if ($query->param('newwebpass') && $query->param('newwebpassvrfy')) { if ($query->param('newwebpass') ne $query->param('newwebpassvrfy')) { # passwords don't match... - &Util::HTMLError("The passwords you specified do not match. Please go back and try again."); + &Util::HTMLError("The web-passwords you specified do not match. Please go back and try again."); } my ($r, $msg) = &Util::checkPasswordQuality($query->param('newwebpass'), undef, [@ldapinfo_for_pwcheck]); if ($r) { - &Util::HTMLError("Password check failed: $msg. Please go back and try again."); + &Util::HTMLError("Password check failed for web-password: $msg. Please go back and try again."); } # create a md5 crypted password - $newwebpassword = apache_md5_crypt($query->param('newwebpass'), &Util::CreateCryptSalt()); + $newwebpassword = apache_md5_crypt($query->param('newwebpass'), &Util::CreateMD5Salt()); &Util::LDAPUpdate($ldap, $editdn, 'webPassword', $newwebpassword); }