第一个方法:
打开:source\include\post\post_newreply.php
搜索:大概在333行
        if(!empty($_GET['trade']) && $thread['special'] == 2 && $_G['group']['allowposttrade']) {
                $bfmethods[] = array('class' => 'extend_thread_trade', 'method' => 'before_newreply');
        }
在以上语句下添加:
if(preg_match_all("/[\xB0-\xF7][\xA1-\xFE]/",$message,$regs)<=5)
showmessage("  <b><font
color=lime>请珍惜楼主的劳动成果,勿恶意灌水,回帖必须大于5字!</font></b>");
第二个方法
加个判断就可以设置哪些板块不限制了。
<!--{if in_array($_G[fid], array(53,54,55))}-->
if(preg_match_all("/[\xB0-\xF7][\xA1-\xFE]/",$message,$regs)<=5)
showmessage("  <b><font
color=lime>请珍惜楼主的劳动成果,勿恶意灌水,回帖必须大于5字!</font></b>");
<!--{/if}-->
|