From: rmccabe@sourceware.org <rmccabe@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] conga/luci/homebase validate_user_add.js
Date: 5 Feb 2008 20:53:22 -0000 [thread overview]
Message-ID: <20080205205322.26935.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2008-02-05 20:53:22
Modified files:
luci/homebase : validate_user_add.js
Log message:
Bump the minimum password length to 6, to match what luci_admin requires
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/homebase/validate_user_add.js.diff?cvsroot=cluster&r1=1.6&r2=1.7
--- conga/luci/homebase/validate_user_add.js 2008/01/02 20:52:23 1.6
+++ conga/luci/homebase/validate_user_add.js 2008/02/05 20:53:22 1.7
@@ -34,8 +34,8 @@
if (str_is_blank(form.newPassword.value)) {
errors.push('Passwords may not be blank.');
set_form_err(form.newPassword);
- } else if (form.newPassword.value.length < 5) {
- errors.push('Passwords must be at least five characters long.');
+ } else if (form.newPassword.value.length < 6) {
+ errors.push('Passwords must be@least six characters long.');
set_form_err(form.newPassword);
}
reply other threads:[~2008-02-05 20:53 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080205205322.26935.qmail@sourceware.org \
--to=rmccabe@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).