1、修改post_newthread.php
找到这段代码
if(trim($subject) == '') {
showmessage('post_sm_isnull');
}
在后面添加
if(DB::fetch_first("SELECT tid FROM ".DB::table('forum_thread')." WHERE fid='$_G[fid]' AND subject like '$subject' LIMIT 1;"))
{
showmessage('post_sm_isrepeat');
}
保存啦,忘了又得来一遍