织梦允许不同会员发布相同的文章,不允许同一会员发布重复的文章

在member/inc/archives_check.php文件中

//检测文档是否重复 
if($cfg_mb_cktitle=='Y') 

    $row = $dsql->GetOne("Select * From `dede_archives` where title like '$title' "); 
    if(is_array($row)) 
    { 
        ShowMsg("对不起,请不要发布重复文档!","-1","0",5000); 
        exit(); 
    } 

织梦允许不同会员发布相同文章不允许同一会员发布重复的文章

查询语句修改为$row = $dsql->GetOne("Select * From `dede_archives` where title like '$title' and mid = '".$cfg_ml->M_ID."'");即可 

经实践正确!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/115d2e5d9dbaae3836fa9478a4b46f83.html