解決升級至 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) {