织梦不同会员可发布相同文章,同一会员不可发布重复文章

时间:2016-07-10
织梦DedeCMS允许不同会员发布相同文章,不允许同一会员发布重复文章的方法:
打开 /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' ");
修改为
$row = $dsql->GetOne("Select * From `dede_archives` where title like '$title' and mid = '".$cfg_ml->M_ID."'");
上一条:织梦dedecms后台添加缩略图地址style变成st<x>y<x>l 下一条:织梦dedecms第3个和第6个li标签margin-right:0;的方法

相关文章

最新文章