From: Pascal Corpet Date: Sun, 30 May 2010 19:18:23 +0000 (+0200) Subject: Allow 35 points passwords as announced (Closes #1019) X-Git-Tag: xorg/1.0.0~216 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=23f6d4ccc2581d6cb5941727c357784d24ca96d9;p=platal.git Allow 35 points passwords as announced (Closes #1019) --- 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;