学习NO.1 发表于 2015-3-2 18:39:26

DZ修改标题字数限制:Discuz X2.0 如何修改帖子标题字数限制

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}<strongid="checklen">80</strong>{lang comment_message2}和<strong id="checklen">200</strong> {lang comment_message2将这些代码中的80改为180
本文转载自:http://www.vpao.net/?p=1388主要是因为一个网友问到帖子的字数处理的问题,通过学习这个的处理方法可以应用到其他的程序中。
页: [1]
查看完整版本: DZ修改标题字数限制:Discuz X2.0 如何修改帖子标题字数限制