cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] conga/luci/homebase validate_user_add.js
@ 2008-02-05 20:53 rmccabe
  0 siblings, 0 replies; only message in thread
From: rmccabe @ 2008-02-05 20:53 UTC (permalink / raw)
  To: cluster-devel.redhat.com

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);
 		}
 



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-02-05 20:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-05 20:53 [Cluster-devel] conga/luci/homebase validate_user_add.js rmccabe

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).