Discuz X2 修改帖子標題80字限制
1. 進入後台> 數據庫> 升級貼入下面的SQL 提交如果你的表前綴不是默認的pre_ 請修改之
這裡的120為你要修改成的字數限制如果這裡你設為160 之後修改的代碼裡的120都改為160 ALTER TABLE `pre_forum_thread` CHANGE `subject` `subject` CHAR( 120 );
ALTER TABLE `pre_forum_post` CHANGE `subject` `subject` CHAR( 120 );2。 記事本等編輯器打source/function/ function_post.php
找到
if(dstrlen($subject) > 80) {改成
if(dstrlen($subject) > 120) {3.再打開static/js/forum_post.js
找到
你可以搜80字符
找出
即上傳的80
也改一下
} else if(mb_strlen(theform.subject.value) > 80) {
showError('您的標題超過 80 個字符的限制');改成
} else if(mb_strlen(theform.subject.value) > 120) {
showDialog('您的標題超過 120 個字符的限制');4.再打開templates/default/forum/post_editor_extra.htm
找到
strLenCalc(this, 'checklen', 80);改成
strLenCalc(this, 'checklen', 120);5. 更新緩存
Reference:
http://uucoz.com/thread-164-1-1.html
http://www.licqi.com/archives/126.html
頁:
[1]