`
tgxz2000
  • 浏览: 30001 次
  • 性别: Icon_minigender_1
  • 来自: 江苏
最近访客 更多访客>>
社区版块
存档分类
最新评论

[低调蓝色]DEDECMS:对不起,请不要发布重复文档(已解决+延伸)

PHP 
阅读更多

在member/inc/archives_check.php文件中

  1. //检测文档是否重复
  2. if($cfg_mb_cktitle=='Y')
  3. {
  4.     $row = $dsql->GetOne("Select * From `#@__archives` where title like '$title' ");
  5.     if(is_array($row))
  6.     {
  7.         ShowMsg("对不起,请不要发布重复文档!","-1","0",5000);
  8.         exit();
  9.     }
  10. }
延伸修改:允许不同会员发布相同的文章,不允许同一会员发布重复的文章

查询语句修改为$row = $dsql->GetOne("Select * From `#@__archives` where title like '$title' and mid = '".$cfg_ml->M_ID."'");即可
0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics