当前位置 : 主页 > 建站教程 > dedecms >

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

来源:互联网 收集:自由互联 发布时间:2021-06-20
在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(对不起,请不要发布重复文档!

在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."'");即可 

经实践正确!

网友评论
相关栏目