1、修改语言包
templates.lang.php
'post_subject_toolong' => '您的标题超过 80 个字符的限制。',
把80改为你想要的数目
2、修改include/post.func.php
function checkpost() {
global $subject, $message, $disablepostctrl, $minpostsize, $maxpostsize;
if(strlen($subject) > 80) {
return 'post_subject_toolong';
3、把80改为你想要的数目
修改模板 viewthread.htm
} else if (theform.subject.value.length > 80) {
alert("{lang post_subject_toolong}");
theform.subject.focus();
return false;
把80改为你想要的数目
4、include/javascript/post_editor.js
里面
} else if(mb_strlen(theform.subject.value) > 80) {
alert(lang['post_subject_toolong']);
theform.subject.focus();
return false;
}
5、升级数据库
ALTER TABLE `cdb_threads` CHANGE `subject` `subject` CHAR( 200 ) NOT NULL