From 8bee4753d733a8d2330561172159c1462af31be1 Mon Sep 17 00:00:00 2001 From: ftimme Date: Fri, 18 May 2012 16:42:55 +0000 Subject: [PATCH] - Avoid too complex passwords by not using special characters. --- interface/web/js/scrigo.js.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/web/js/scrigo.js.php b/interface/web/js/scrigo.js.php index 7e01c7d23..4a33f9671 100644 --- a/interface/web/js/scrigo.js.php +++ b/interface/web/js/scrigo.js.php @@ -555,7 +555,7 @@ function generatePassword(passwordFieldID){ var newPWField = oldPWField.clone(); newPWField.attr('type', 'text').attr('id', 'tmp'+passwordFieldID).insertBefore(oldPWField); oldPWField.remove(); - newPWField.attr('id', passwordFieldID).val(password(10, true)).trigger('keyup'); + newPWField.attr('id', passwordFieldID).val(password(10, false)).trigger('keyup'); } function checkPassMatch(pwField1,pwField2){ -- GitLab