From 7e071849e84e3605d36cdef39332fe58e2dc76c7 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Fri, 9 Mar 2012 18:59:28 +0100 Subject: [PATCH] And say which password failed its check --- update.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.cgi b/update.cgi index d7749d8..c7caafd 100755 --- a/update.cgi +++ b/update.cgi @@ -240,12 +240,12 @@ 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 -- 2.20.1