首页 > CMS > Discuz > 正文

解决Discuz! X2.5注册用户名未到15个字符提示错误

2024-07-09 22:57:38
字体:
来源:转载
供稿:网友

解决升级至 Discuz! X2.5 0901 后,GBK版本下注册用户名,字符没有到15个便提示:用户名不得超过 15 个字符。

编辑文件:/static/js egister.js

x.get('forum.php?mod=ajax&inajax=yes&infloat=register&handlekey=register&ajaxmenu=1&action=checkusername&username=' + encodeURIComponent(username), function(s) {

替换为:

x.get('forum.php?mod=ajax&inajax=yes&infloat=register&handlekey=register&ajaxmenu=1&action=checkusername&username=' + (BROWSER.ie && document.charset == 'utf-8' ? encodeURIComponent(username) : username.replace(/%/g, '%25')), function(s) {

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表