Discuz!X3.2帖子标题限制80个字符的修改方法

修改为200

第一步、执行SQL语句

SQL代码:
ALTER TABLE `pre_forum_post` CHANGE `subject` `subject` VARCHAR(200) NOT NULL;
ALTER TABLE `pre_forum_rsscache` CHANGE `subject` `subject` char(200) NOT NULL;
ALTER TABLE `pre_forum_thread` CHANGE `subject` `subject` char(200) NOT NULL;

第二步、修改JS文件
打开 /static/js/forum_post.js 文件
查找
else if(mb_strlen(theform.subject.value) > 80) {
        s = '您的标题超过 80 个字符的限制';
        theform.subject.focus();
}

修改为

else if(mb_strlen(theform.subject.value) > 200) {
        s = '您的标题超过 200 个字符的限制';
        theform.subject.focus();
} 
打开 /static/js/forum.js 文件
查找
else if(mb_strlen(theform.subject.value) > 80) {
        showError('您的标题超过 80 个字符的限制');
        return false;
    }

修改为

else if(mb_strlen(theform.subject.value) > 200) {
        showError('您的标题超过 200 个字符的限制');
        return false;
    } 

第三步、修改模板文件
打开 /template/default/forum/post_editor_extra.htm 文件
查找

            
                RE: $thread[subject] [{lang modify}]
                
                        
            
            
修改为


            
                RE: $thread[subject] [{lang modify}]
                
                        
            
            


打开 /template/default/forum/forumdisplay_fastpost.htm 文件
查找

                {lang comment_message1} 80 {lang comment_message2}
修改为


                {lang comment_message1} 200 {lang comment_message2}
第四步、修改函数
打开 /source/function/function_post.php 文件
找到:
if(dstrlen($subject) > 80) {
return 'post_subject_toolong';
}

修改为:
if(dstrlen($subject) > 200) {
return 'post_subject_toolong';
}

第五步、语言包修改
打开 /source/language/lang_messege.php 文件
找到
'post_subject_toolong' => '抱歉,您的标题超过 80 个字符修改标题长度',
修改为
'post_subject_toolong' => '抱歉,您的标题超过 200 个字符修改标题长度'

 

转载于:https://www.cnblogs.com/lykouyi/p/9625651.html

你可能感兴趣的:(Discuz!X3.2帖子标题限制80个字符的修改方法)