Copyright @ 2015-2024 织梦园 版权所有 Power by DedeCms
鲁ICP备15039853号-2

模板标签 TAG标签 网站地图 XML地图 今日更新 返回顶部
| 
//检测文档是否重复
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."'"); |