Index: ssts-web/src/main/webapp/js/common.js =================================================================== diff -u -r22157 -r22262 --- ssts-web/src/main/webapp/js/common.js (.../common.js) (revision 22157) +++ ssts-web/src/main/webapp/js/common.js (.../common.js) (revision 22262) @@ -1992,7 +1992,7 @@ * @return */ function testPasswordReg(pwd){ - if(pwd.length<8||!/[0-9]+/.test(pwd)||!/[a-zA-Z]+/.test(pwd)){ + if(pwd.length<6||!/[0-9]+/.test(pwd)||!/[a-zA-Z]+/.test(pwd)){ return true; } return false;