Tag Archives: 字符

Discuz!发帖提示80个字符限制的解决办法

错误提示: 您的标题超过 80 个字符的限制。 需要修改的文件如下: include/post.func.php include/javascript/post_editor.js modcp/editpost.inc.php templates/default/viewthread.htm templates/default/forumdisplay.htm templates/default/templates.lang.php templates/default/messages.lang.php 1、打开 include/post.func.php function checkpost() { global $subject, $message, $disablepostctrl, $minpostsize, $maxpostsize; if(strlen($subject) > 80) { return 'post_subject_toolong'; } 把 > 80 改成 你想要的数字 2、打开 include/javascript/post_editor.js } else if(mb_strlen(theform.subject.value) … Continue reading

Posted in Technology | Tagged , , | Leave a comment