ftimme
2012-05-18 8bee4753d733a8d2330561172159c1462af31be1
- Avoid too complex passwords by not using special characters.
1 files modified
2 ■■■ changed files
interface/web/js/scrigo.js.php 2 ●●● patch | view | raw | blame | history
interface/web/js/scrigo.js.php
@@ -555,7 +555,7 @@
    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){