|
由于之前我们限制了用户名>3个字符,但是部分网站的用户名没有这个限制,因此需要做一下改动。
source\plugin\zhanmishu_sms\template\touch\getpasswd.htm
查找下面代码:
- function checksend(){
- username = jQuery("#lostpw_mobileusername").val();
- if (username.length < 3) {
- popup.open('{lang zhanmishu_sms:please_input_username}', 'alert');
- return false;
- }else if (pwdcheckmobile(jQuery("#lostpw_mobile").val()) == false) {
- popup.open('{lang zhanmishu_sms:please_input_passwd}', 'alert');
- return false;
- }
- return username;
- }
复制代码 修改为:
- function checksend(){
- username = jQuery("#lostpw_mobileusername").val();
- if (username.length < 1) {
- popup.open('{lang zhanmishu_sms:please_input_username}', 'alert');
- return false;
- }else if (pwdcheckmobile(jQuery("#lostpw_mobile").val()) == false) {
- popup.open('{lang zhanmishu_sms:please_input_passwd}', 'alert');
- return false;
- }
- return username;
- }
复制代码
|
|