Mofify: include/post.php
Find
- function checkpost() {
- global $subject, $message, $disablepostctrl, $minpostsize, $maxpostsize;
- if(strlen($subject) > 80) {
- return 'post_subject_toolang';
- }
- if(!$disablepostctrl) {
- if($maxpostsize && strlen($message) > $maxpostsize) {
- return 'post_message_toolang';
- } elseif($minpostsize && strlen(preg_replace("/\[quote\].+?\[\/quote\]/is", '', $message)) < $minpostsize) {
- return 'post_message_tooshort';
- }
- }
- return FALSE;
- }
复制代码
把 80 改为其他数目
修改 messages 语言包
- 'post_subject_toolang' => '对不起,您的标题超过 80 个字符,请返回修改标题长度。',
复制代码
把 80 改为其他数目
OK!!!
All the best! |