1. 在点击后台系统设置 → 系统基本参数 → 添加新变量(相关内容见下图) Copy code//检查游客是否可以发表评论 if($cfg_feedback_guest=='N') { //检查用户登录 if(empty($notuser)) { $notuser=0; } //匿名发表评论 if($notuser==1) { $username = $cfg_ml->M_ID > 0 ? '匿名' : '游客'; } else if($cfg_ml->M_ID > 0) { $username = $cfg_ml->M_UserName; } else { if($username!='' && $pwd!='') { $rs = $cfg_ml->CheckUser($username,$pwd); if($rs==1) { $dsql->ExecuteNoneQuery("Update `cmsxx_member` set logintime='".time()."',loginip='".GetIP()."' where mid='{$cfg_ml->M_ID}'; "); } else { ResetVdValue(); ShowMsg('管理员设置了游客不允许发表评论,请先登入或注册!','-1'); exit(); } } else { ResetVdValue(); ShowMsg('管理员设置了游客不允许发表评论,请先登入或注册!','-1'); exit(); } } } else { //检查用户登录 if(empty($notuser)) { $notuser=0; } //匿名发表评论 if($notuser==1) { $username = $cfg_ml->M_ID > 0 ? '匿名' : '游客'; } //已登录的用户 else if($cfg_ml->M_ID > 0) { $username = $cfg_ml->M_UserName; } //用户身份验证 else { if($username!='' && $pwd!='') { $rs = $cfg_ml->CheckUser($username,$pwd); if($rs==1) { $dsql->ExecuteNoneQuery("Update `cmsxx_member` set logintime='".time()."',loginip='".GetIP()."' where mid='{$cfg_ml->M_ID}'; "); } else { |