Discuz 的靠山没有提供修改标题长度的限制,可以通过修改以下几个文件来实现:衡阳网站建设
1、/source/function/fuction_post.php衡阳网络公司
修改函数checkpost($subject,$message, $special = 0)
在该函数中查找
if(strlen($subject) > 80) {
return 'post_subject_toolong';
}
2、/source/language/lang_message.php
修改 'post_subject_toolong' => '对不起,你的标题高出 80个字符,请返回修改标题长度。'
3、/static/js/forum_post.js
修改函数validate(theform)
查找
elseif(mb_strlen(theform.subject.value) > 80) {
showDialog('您的标题高出 80 个字符的限制');
returnfalse;
}
4、template/default/forum/post.htm
查找:onkeyup="strLenCalc(this,'checklen', 80);"
{lang comment_message1}
将这些代码中的80改为180