QQ|手机版|小黑屋|集设屋资源网 ( 渝ICP备2023015870号-1 )

GMT+8, 2024-12-22 18:50 , Processed in 0.146520 second(s), 41 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

修改discuz X3.2论坛标题80个字符的长度限制

164
0
0
0
软件管家 LV9
正文
发布时间:2022-09-12

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
第一步、执行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 文件
查找
<span><input type="text" name="subject" id="subject" class="px" value="$postinfo[subject]" {if $_GET[action] == 'newthread'}onblur="if($('tags')){relatekw('-1','-1'{if $_G['group']['allowposttag']},function(){extraCheck(4)}{/if});doane();}"{/if} style="width: 25em" tabindex="1" /></span>
            <!--{else}-->
                <span id="subjecthide" class="z">RE: $thread[subject] [<a href="javascript:;">{lang modify}</a>]</span>
                <span id="subjectbox" style="display:none"><input type="text" name="subject" id="subject" class="px" value="" style="width: 25em" /></span>
            <!--{/if}-->            
            <span id="subjectchk"{if $_GET[action] == 'reply'} style="display:none"{/if}>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>
            <script type="text/javascript">strLenCalc($('subject'), 'checklen', 80)</script>
修改为
<span><input type="text" name="subject" id="subject" class="px" value="$postinfo[subject]" {if $_GET[action] == 'newthread'}onblur="if($('tags')){relatekw('-1','-1'{if $_G['group']['allowposttag']},function(){extraCheck(4)}{/if});doane();}"{/if} style="width: 25em" tabindex="1" /></span>
            <!--{else}-->
                <span id="subjecthide" class="z">RE: $thread[subject] [<a href="javascript:;">{lang modify}</a>]</span>
                <span id="subjectbox" style="display:none"><input type="text" name="subject" id="subject" class="px" value="" style="width: 25em" /></span>
            <!--{/if}-->            
            <span id="subjectchk"{if $_GET[action] == 'reply'} style="display:none"{/if}>{lang comment_message1} <strong id="checklen">200</strong> {lang comment_message2}</span>
            <script type="text/javascript">strLenCalc($('subject'), 'checklen', 200)</script>

打开 /template/default/forum/forumdisplay_fastpost.htm 文件
查找
<input type="text" id="subject" name="subject" class="px" value="" tabindex="11" style="width: 25em" />
                <span>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>
修改为
<input type="text" id="subject" name="subject" class="px" value="" tabindex="11" style="width: 25em" />
                <span>{lang comment_message1} <strong id="checklen">200</strong> {lang comment_message2}</span>
第四步、修改函数
打开 /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 个字符修改标题长度'
测试3
回复

使用道具

 
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表