From 23f6d4ccc2581d6cb5941727c357784d24ca96d9 Mon Sep 17 00:00:00 2001 From: Pascal Corpet Date: Sun, 30 May 2010 21:18:23 +0200 Subject: [PATCH] Allow 35 points passwords as announced (Closes #1019) --- ChangeLog | 3 +++ htdocs/javascript/xorg.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 47f35eb..c49656e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,9 @@ New: - Centralises email management through an email combobox -JAC Bug/Wish: + * Core: + - #1019: Allow 35 points passwords as announced -Car + * Profile: - #16, #528, #917: Changes job interface, updates business sectors -JAC - #188: Adds informations about the Corps d'État -JAC diff --git a/htdocs/javascript/xorg.js b/htdocs/javascript/xorg.js index 3e6779a..eb8996a 100644 --- a/htdocs/javascript/xorg.js +++ b/htdocs/javascript/xorg.js @@ -303,7 +303,7 @@ function checkPassword(box, okLabel) { color = "#4f4"; bgcolor = "#050"; ok = true; - } else if (prop >= 40) { + } else if (prop >= 35) { color = "#ff4"; bgcolor = "#750"; ok = true; -- 2.1.4