function EditInfoSimple($add, $userid, $username) { global $empire, $class_r, $class_zr, $bclassid, $public_r, $dbtbpre, $emod_r; $add[classid] = (int) $add[classid]; $userid = (int) $userid; $ztid = $add[ztid]; $add[id] = (int) $add[id]; $closeurl = 'info/EditInfoSimple.php?isclose=1&reload=1'; if (!$add[id] || !$add[title] || !$add[classid]) { printerror("EmptyTitle", "history.go(-1)", 8); } $doselfinfo = CheckLevel($userid, $username, $add[classid], "news"); //操作权限 if (!$doselfinfo['doeditinfo']) { printerror("NotEditInfoLevel", "history.go(-1)", 8); } $ccr = $empire->fetch1("select classid,modid,listdt,haddlist,sametitle,addreinfo,wburl,repreinfo from {$dbtbpre}enewsclass where classid='{$add['classid']}' and islast=1"); if (!$ccr['classid'] || $ccr[wburl]) { printerror("ErrorUrl", "history.go(-1)", 8); } $checkr = $empire->fetch1("select id,userid,username,ismember,stb,copyids,newspath,filename,isqf,checked from {$dbtbpre}ecms_" . $class_r[$add[classid]][tbname] . " where id='{$add['id']}' and classid='{$add['classid']}'"); if (!$checkr[id]) { printerror("ErrorUrl", "history.go(-1)", 8); } if ($doselfinfo['doselfinfo'] && ($checkr[userid] != $userid || $checkr[ismember])) { printerror("NotDoSelfinfo", "history.go(-1)", 8); } if ($ccr['sametitle']) { $num = $empire->gettotal("select count(*) as total from {$dbtbpre}ecms_" . $class_r[$add[classid]][tbname] . " where title='{$add['title']}' and id<>{$add['id']} limit 1"); if ($num) { printerror("ReInfoTitle", "history.go(-1)", 8); } } $mid = $class_r[$add[classid]][modid]; $pf = $emod_r[$mid]['pagef']; $add = DoPostInfoVar($add); //返回变量 //签发 $a = ""; if ($class_r[$add[classid]][wfid] && $checkr['isqf']) { $qfr = $empire->fetch1("select checktno from {$dbtbpre}enewswfinfo where id='{$add['id']}' and classid='{$add['classid']}' limit 1"); if ($qfr['checktno'] == '100') { $aqf = ",checked='{$add['checked']}'"; } else { if ($add[reworkflow]) { InfoUpdateToWorkflow($add[id], $add[classid], $class_r[$add[classid]][wfid], $userid, $username); } $aqf = ''; } } else { $aqf = ",checked='{$add['checked']}'"; } $lastdotime = time(); //发布时间 $newstime = empty($add['newstime']) ? time() : to_time($add['newstime']); //主表 $sql = $empire->query("update {$dbtbpre}ecms_" . $class_r[$add[classid]][tbname] . " set classid='{$add['classid']}',istop='{$add['istop']}',isgood='{$add['isgood']}',titlefont='" . addslashes($add[my_titlefont]) . "',titleurl='" . addslashes($add[titleurl]) . "',firsttitle='{$add['firsttitle']}',closepl='{$add['closepl']}',lastdotime='{$lastdotime}',ttid='{$add['ttid']}',onclick='{$add['onclick']}',totaldown='{$add['totaldown']}',ispic='{$add['ispic']}',title='" . addslashes($add[title]) . "',titlepic='" . addslashes($add[titlepic]) . "',newstime='{$newstime}'" . $aqf . " where id='{$add['id']}'"); //更新附件 UpdateTheFileEdit($add['classid'], $add['id']); //生成文件 if ($ccr['addreinfo']) { $ar = $empire->fetch1("select * from {$dbtbpre}ecms_" . $class_r[$add[classid]][tbname] . " where id='{$add['id']}'"); GetHtml($ar, ''); } //生成上一篇 if ($ccr['repreinfo'] && ($add[checked] || $add[checked] != $add[oldchecked])) { $prer = $empire->fetch1("select * from {$dbtbpre}ecms_" . $class_r[$add[classid]][tbname] . " where id<{$add['id']} and classid='{$add['classid']}' and checked=1 order by id desc limit 1"); GetHtml($prer, ''); } //生成栏目 if ($ccr['haddlist'] && ($add[checked] || $add[checked] != $add[oldchecked])) { hAddListHtml($add[classid], $ccr['modid'], $ccr['haddlist'], $ccr['listdt']); //生成信息列表 } //同时更新 if ($checkr['copyids'] && $checkr['copyids'] != '1') { EditInfoToCopyInfo($add[classid], $add[id], $userid, $username); } if ($sql) { //返回地址 if ($add['ecmsfrom'] && (stristr($add['ecmsfrom'], 'ListNews.php') || stristr($add['ecmsfrom'], 'ListAllInfo.php'))) { $ecmsfrom = $add['ecmsfrom']; } else { $ecmsfrom = "ListNews.php?bclassid={$add['bclassid']}&classid={$add['classid']}"; } insert_dolog("classid={$add['classid']}<br>id=" . $add[id] . "<br>title=" . $add[title]); //操作日志 printerror("EditNewsSuccess", $closeurl, 8); } else { printerror("DbError", "history.go(-1)", 8); } }
function EditInfoSimple($add, $userid, $username) { global $empire, $class_r, $class_zr, $bclassid, $public_r, $dbtbpre, $emod_r; $add[classid] = (int) $add[classid]; $userid = (int) $userid; $add[id] = (int) $add[id]; $closeurl = 'info/EditInfoSimple.php?isclose=1&reload=1' . hReturnEcmsHashStrHref2(0); if (!$add[id] || !$add[title] || !$add[classid]) { printerror("EmptyTitle", "history.go(-1)", 8); } $doselfinfo = CheckLevel($userid, $username, $add[classid], "news"); //操作权限 if (!$doselfinfo['doeditinfo']) { printerror("NotEditInfoLevel", "history.go(-1)", 8); } $ccr = $empire->fetch1("select classid,modid,listdt,haddlist,sametitle,addreinfo,wburl,repreinfo from {$dbtbpre}enewsclass where classid='{$add['classid']}' and islast=1 limit 1"); if (!$ccr['classid'] || $ccr['wburl']) { printerror("ErrorUrl", "history.go(-1)", 8); } //索引表 $index_checkr = $empire->fetch1("select id,classid,checked from {$dbtbpre}ecms_" . $class_r[$add[classid]][tbname] . "_index where id='{$add['id']}' limit 1"); if (!$index_checkr['id'] || $index_checkr['classid'] != $add['classid']) { printerror("ErrorUrl", "history.go(-1)", 8); } //主表 $infotb = ReturnInfoMainTbname($class_r[$add[classid]][tbname], $index_checkr['checked']); $checkr = $empire->fetch1("select id,classid,userid,username,ismember,stb,newspath,filename,isqf,fstb,isgood,firsttitle,istop,groupid from " . $infotb . " where id='{$add['id']}' limit 1"); if ($doselfinfo['doselfinfo'] && ($checkr['userid'] != $userid || $checkr['ismember'])) { printerror("NotDoSelfinfo", "history.go(-1)", 8); } //已审核信息不可修改 if ($doselfinfo['docheckedit'] && $index_checkr['checked']) { printerror("NotEditCheckInfoLevel", "history.go(-1)"); } //审核权限 if (!$doselfinfo['docheckinfo']) { $add['checked'] = $index_checkr['checked']; } //必须审核 if ($doselfinfo['domustcheck'] && !$index_checkr['checked']) { $add['checked'] = 0; } //推荐权限 if (!$doselfinfo['dogoodinfo']) { $add['isgood'] = $checkr['isgood']; $add['firsttitle'] = $checkr['firsttitle']; $add['istop'] = $checkr['istop']; } if ($ccr['sametitle']) { if (ReturnCheckRetitle($add)) { printerror("ReInfoTitle", "history.go(-1)", 8); } } //公共表 $pubid = ReturnInfoPubid($add['classid'], $add['id']); $pubcheckr = $empire->fetch1("select copyids from {$dbtbpre}enewsinfovote where pubid='{$pubid}' limit 1"); $mid = $class_r[$add[classid]][modid]; $pf = $emod_r[$mid]['pagef']; $add = DoPostInfoVar($add); //返回变量 //签发 $newchecked = $index_checkr['checked']; $a = ""; if ($class_r[$add[classid]][wfid] && $checkr['isqf']) { $qfr = $empire->fetch1("select checktno from {$dbtbpre}enewswfinfo where id='{$add['id']}' and classid='{$add['classid']}' limit 1"); if ($qfr['checktno'] == '100') { $aqf = ",checked='{$add['checked']}'"; $newchecked = $add[checked]; } else { if ($add[reworkflow]) { InfoUpdateToWorkflow($add[id], $add[classid], $class_r[$add[classid]][wfid], $userid, $username); } $aqf = ''; } } else { $aqf = ",checked='{$add['checked']}'"; $newchecked = $add[checked]; } $lastdotime = time(); //发布时间 $newstime = empty($add['newstime']) ? time() : to_time($add['newstime']); //附加链接参数 $addecmscheck = empty($newchecked) ? '&ecmscheck=1' : ''; //信息地址 $infourl = GotoGetTitleUrl($add['classid'], $add['id'], $checkr['newspath'], $checkr['filename'], $checkr['groupid'], $add['isurl'], $add['titleurl']); //返回表信息 $infotbr = ReturnInfoTbname($class_r[$add[classid]][tbname], $index_checkr['checked'], $checkr['stb']); //索引表 $indexsql = $empire->query("update {$dbtbpre}ecms_" . $class_r[$add[classid]][tbname] . "_index set newstime='{$newstime}',lastdotime='{$lastdotime}'" . $aqf . " where id='{$add['id']}' limit 1"); //主表 $sql = $empire->query("update " . $infotbr['tbname'] . " set classid='{$add['classid']}',ttid='{$add['ttid']}',onclick='{$add['onclick']}',totaldown='{$add['totaldown']}',firsttitle='{$add['firsttitle']}',isgood='{$add['isgood']}',ispic='{$add['ispic']}',istop='{$add['istop']}',isurl='{$add['isurl']}',lastdotime='{$lastdotime}',titlefont='" . addslashes($add[my_titlefont]) . "',titleurl='" . addslashes($infourl) . "',title='" . addslashes($add[title]) . "',titlepic='" . addslashes($add[titlepic]) . "',newstime='{$newstime}' where id='{$add['id']}' limit 1"); //副表 $fsql = $empire->query("update " . $infotbr['datatbname'] . " set classid='{$add['classid']}',closepl='{$add['closepl']}'" . $ret_r[datavalues] . " where id='{$add['id']}' limit 1"); //更新附件 UpdateTheFileEdit($add['classid'], $add['id'], $checkr['fstb']); //是否改变审核状态 if ($index_checkr['checked'] != $newchecked) { MoveCheckInfoData($class_r[$add[classid]][tbname], $index_checkr['checked'], $checkr['stb'], "id='{$add['id']}'"); //更新栏目信息数 if ($newchecked) { AddClassInfos($add['classid'], '', '+1'); } else { AddClassInfos($add['classid'], '', '-1'); } } //生成文件 if ($ccr['addreinfo'] && $newchecked) { GetHtml($add['classid'], $add['id'], '', 0); } //生成上一篇 if ($ccr['repreinfo'] && ($newchecked || $newchecked != $add[oldchecked])) { $prer = $empire->fetch1("select * from {$dbtbpre}ecms_" . $class_r[$add[classid]][tbname] . " where id<{$add['id']} and classid='{$add['classid']}' order by id desc limit 1"); GetHtml($prer['classid'], $prer['id'], $prer, 1); } //生成栏目 if ($ccr['haddlist'] && ($newchecked || $newchecked != $add[oldchecked])) { hAddListHtml($add[classid], $ccr['modid'], $ccr['haddlist'], $ccr['listdt']); //生成信息列表 } //同时更新 if ($checkr['copyids'] && $checkr['copyids'] != '1') { EditInfoToCopyInfo($add[classid], $add[id], $userid, $username, $doselfinfo); } if ($sql) { //返回地址 if ($add['ecmsfrom'] && (stristr($add['ecmsfrom'], 'ListNews.php') || stristr($add['ecmsfrom'], 'ListAllInfo.php'))) { $ecmsfrom = $add['ecmsfrom']; } else { $ecmsfrom = "ListNews.php?bclassid={$add['bclassid']}&classid={$add['classid']}" . hReturnEcmsHashStrHref2(0); } $ecmsfrom = $ecmsfrom . $addecmscheck; insert_dolog("classid={$add['classid']}<br>id=" . $add[id] . "<br>title=" . $add[title], $pubid); //操作日志 printerror("EditNewsSuccess", $closeurl, 8); } else { printerror("DbError", "history.go(-1)", 8); } }
function DodoInfo($add, $ecms = 0) { global $empire, $public_r, $emod_r, $level_r, $class_r, $dbtbpre, $fun_r; //验证来源 if ($ecms == 0 || $ecms == 1) { CheckCanPostUrl(); } //开启投稿 if ($public_r['addnews_ok']) { printerror("CloseQAdd", "", 1); } //验证本时间允许操作 eCheckTimeCloseDo('info'); $classid = (int) $add['classid']; $mid = (int) $class_r[$classid]['modid']; if (!$mid || !$classid) { printerror("EmptyQinfoCid", "", 1); } $tbname = $emod_r[$mid]['tbname']; $qenter = $emod_r[$mid]['qenter']; if (!$tbname || !$qenter || $qenter == ',') { printerror("ErrorUrl", "history.go(-1)", 1); } $muserid = (int) getcvar('mluserid'); $musername = RepPostVar(getcvar('mlusername')); $mrnd = RepPostVar(getcvar('mlrnd')); //取得栏目信息 $isadd = 0; if ($ecms == 0) { $isadd = 1; } $setuserday = ''; $cr = DoQCheckAddLevel($classid, $muserid, $musername, $mrnd, $ecms, $isadd); $setuserday = $cr['checkaddnumquery']; $filepass = (int) $add['filepass']; $id = (int) $add['id']; $infor = array(); //组合标题属性 $titlecolor = RepPostStr(RepPhpAspJspcodeText($add[titlecolor])); $titlefont = TitleFont($add[titlefont], $titlecolor); $titlecolor = ""; $titlefont = ""; $ttid = (int) $add['ttid']; $keyboard = addslashes(RepPostStr(trim(DoReplaceQjDh($add[keyboard])))); $keyid = ''; //返回关键字组合 if ($keyboard && strstr($qenter, ',special.field,')) { $keyboard = str_replace('[!--f--!]', 'ecms', $keyboard); $keyid = GetKeyid($keyboard, $classid, $id, $class_r[$classid][link_num]); } //验证码 $keyvname = 'checkinfokey'; //moreport if (Moreport_ReturnMustDt()) { define('ECMS_SELFPATH', eReturnEcmsMainPortPath()); Moreport_ResetMainTempGid(); } //-----------------增加 if ($ecms == 0) { //时间 $lasttime = getcvar('lastaddinfotime'); if ($lasttime) { if (time() - $lasttime < $public_r['readdinfotime']) { printerror("QAddInfoOutTime", "", 1); } } //验证码 if ($cr['qaddshowkey']) { ecmsCheckShowKey($keyvname, $add['key'], 1); } //IP发布数限制 $check_ip = egetip(); $check_checked = $cr['wfid'] ? 0 : $cr['checkqadd']; eCheckIpAddInfoNum($check_ip, $tbname, $mid, $check_checked); //返回字段 $ret_r = ReturnQAddinfoF($mid, $add, $infor, $classid, $filepass, $muserid, $musername, 0); $checked = $cr['checkqadd']; $havehtml = 0; $newspath = date($cr['newspath']); $truetime = time(); $newstime = $truetime; $newstempid = $cr['newstempid']; $haveaddfen = 0; //强制签发 $isqf = 0; if ($cr['wfid']) { $checked = 0; $isqf = 1; } //增扣点 if ($checked && $muserid) { AddInfoFen($cr['addinfofen'], $muserid); $haveaddfen = 1; } if (empty($muserid)) { $musername = $fun_r['guest']; } //会员投稿数更新 if ($setuserday) { $empire->query($setuserday); } //发布时间 if (!strstr($qenter, ',newstime,')) { $ret_r[0] = ",newstime" . $ret_r[0]; $ret_r[1] = ",'{$newstime}'" . $ret_r[1]; } else { if ($add['newstime']) { $newstime = to_time($add['newstime']); $newstime = intval($newstime); } } //附加链接参数 $addecmscheck = empty($checked) ? '&ecmscheck=1' : ''; //索引表 $indexsql = $empire->query("insert into {$dbtbpre}ecms_" . $tbname . "_index(classid,checked,newstime,truetime,lastdotime,havehtml) values('{$classid}','{$checked}','{$newstime}','{$truetime}','{$truetime}','{$havehtml}');"); $id = $empire->lastid(); //返回表信息 $infotbr = ReturnInfoTbname($tbname, $checked, $ret_r[4]); //主表 $sql = $empire->query("insert into " . $infotbr['tbname'] . "(id,classid,ttid,onclick,plnum,totaldown,newspath,filename,userid,username,firsttitle,isgood,istop,isqf,ismember,isurl,truetime,lastdotime,havehtml,groupid,userfen,titlefont,titleurl,stb,fstb,restb,keyboard" . $ret_r[0] . ") values('{$id}','{$classid}','{$ttid}',0,0,0,'{$newspath}','','" . $muserid . "','" . addslashes($musername) . "',0,0,0,'{$isqf}',1,0,'{$truetime}','{$truetime}','{$havehtml}',0,0,'{$titlefont}','','{$ret_r['4']}','{$public_r['filedeftb']}','{$public_r['pldeftb']}','{$keyboard}'" . $ret_r[1] . ");"); //副表 $fsql = $empire->query("insert into " . $infotbr['datatbname'] . "(id,classid,keyid,dokey,newstempid,closepl,haveaddfen,infotags" . $ret_r[2] . ") values('{$id}','{$classid}','{$keyid}',1,'{$newstempid}',0,'{$haveaddfen}',''" . $ret_r[3] . ");"); //扣点记录 if ($haveaddfen) { if ($cr['addinfofen'] < 0) { BakDown($classid, $id, 0, $muserid, $musername, RepPostStr($add[title]), abs($cr['addinfofen']), 3); } } //签发 if ($isqf == 1) { InfoInsertToWorkflow($id, $classid, $cr['wfid'], $muserid, addslashes($musername)); } //文件命名 $filename = ReturnInfoFilename($classid, $id, ''); //信息地址 $infourl = GotoGetTitleUrl($classid, $id, $newspath, $filename, 0, 0, ''); $usql = $empire->query("update " . $infotbr['tbname'] . " set filename='{$filename}',titleurl='{$infourl}' where id='{$id}'"); //修改ispic UpdateTheIspic($classid, $id, $checked); //修改附件 if ($filepass) { UpdateTheFile($id, $filepass, $classid, $public_r['filedeftb']); } //更新栏目信息数 AddClassInfos($classid, '+1', '+1', $checked); //更新新信息数 DoUpdateAddDataNum('info', $class_r[$classid]['tid'], 1); //清除验证码 ecmsEmptyShowKey($keyvname); esetcookie("qeditinfo", "", 0); //生成页面 if ($checked && !$cr['showdt']) { $titleurl = qAddGetHtml($classid, $id); } //生成列表 if ($checked) { qAddListHtml($classid, $mid, $cr['qaddlist'], $cr['listdt']); //生成上一篇 if ($cr['repreinfo']) { $prer = $empire->fetch1("select * from {$dbtbpre}ecms_" . $tbname . " where id<{$id} and classid='{$classid}' order by id desc limit 1"); GetHtml($prer['classid'], $prer['id'], $prer, 1); } } if ($sql) { $reurl = DoingReturnUrl("AddInfo.php?classid={$classid}&mid={$mid}" . $addecmscheck, $add['ecmsfrom']); if ($add['gotoinfourl'] && $checked) { if ($cr['showdt'] == 1) { $reurl = $public_r[newsurl] . "e/action/ShowInfo/?classid={$classid}&id={$id}"; } elseif ($cr['showdt'] == 2) { $rewriter = eReturnRewriteInfoUrl($classid, $id, 1); $reurl = $rewriter['pageurl']; } else { $reurl = $titleurl; } } esetcookie("lastaddinfotime", time(), time() + 3600 * 24); //设置最后发表时间 printerror("AddQinfoSuccess", $reurl, 1); } else { printerror("DbError", "history.go(-1)", 1); } } elseif ($ecms == 1) { if (!$id) { printerror("ErrorUrl", "history.go(-1)", 1); } //检测权限 $infor = CheckQdoinfo($classid, $id, $muserid, $tbname, $cr['adminqinfo'], 1); //检测时间 if ($public_r['qeditinfotime']) { if (time() - $infor['truetime'] > $public_r['qeditinfotime'] * 60) { printerror("QEditInfoOutTime", "history.go(-1)", 1); } } $iaddfield = ''; $addfield = ''; $faddfield = ''; //返回字段 $ret_r = ReturnQAddinfoF($mid, $add, $infor, $classid, $filepass, $muserid, $musername, 1); if ($keyboard) { $addfield = ",keyboard='{$keyboard}'"; $faddfield = ",keyid='{$keyid}'"; } //时间 if (strstr($qenter, ',newstime,')) { if ($add['newstime']) { $newstime = to_time($add['newstime']); $newstime = intval($newstime); $iaddfield .= ",newstime='{$newstime}'"; } } //修改是否需要审核 $ychecked = $infor['checked']; if ($cr['qeditchecked']) { $infor['checked'] = 0; $iaddfield .= ",checked=0"; $relist = 1; //删除原页面 DelNewsFile($infor[filename], $infor[newspath], $infor[classid], $infor[newstext], $infor[groupid]); } //会员投稿数更新 if ($setuserday) { //$empire->query($setuserday); } $lastdotime = time(); //附加链接参数 $addecmscheck = empty($infor['checked']) ? '&ecmscheck=1' : ''; //索引表 $indexsql = $empire->query("update {$dbtbpre}ecms_" . $tbname . "_index set lastdotime={$lastdotime},havehtml=0" . $iaddfield . " where id='{$id}'"); //返回表信息 $infotbr = ReturnInfoTbname($tbname, $ychecked, $infor['stb']); //主表 $sql = $empire->query("update " . $infotbr['tbname'] . " set lastdotime={$lastdotime},havehtml=0,ttid='{$ttid}'" . $addfield . $ret_r[0] . " where id={$id} and classid={$classid} and userid='{$muserid}' and ismember=1"); //副表 $fsql = $empire->query("update " . $infotbr['datatbname'] . " set classid='{$classid}'" . $faddfield . $ret_r[3] . " where id='{$id}'"); //修改ispic UpdateTheIspic($classid, $id, $ychecked); //更新附件 UpdateTheFileEdit($classid, $id, $infor['fstb']); //未审核信息互转 if ($ychecked != $infor['checked']) { MoveCheckInfoData($tbname, $ychecked, $infor['stb'], "id='{$id}'"); //更新栏目信息数 if ($infor['checked']) { AddClassInfos($classid, '', '+1'); } else { AddClassInfos($classid, '', '-1'); } } esetcookie("qeditinfo", "", 0); //生成页面 if ($infor['checked'] && !$cr['showdt']) { $titleurl = qAddGetHtml($classid, $id); } //生成列表 if ($infor['checked'] || $relist == 1) { qAddListHtml($classid, $mid, $cr['qaddlist'], $cr['listdt']); } //生成上一篇 if ($cr['repreinfo'] && $infor['checked']) { $prer = $empire->fetch1("select * from {$dbtbpre}ecms_" . $tbname . " where id<{$id} and classid='{$classid}' order by id desc limit 1"); GetHtml($prer['classid'], $prer['id'], $prer, 1); } if ($sql) { $reurl = DoingReturnUrl("ListInfo.php?mid={$mid}" . $addecmscheck, $add['ecmsfrom']); if ($add['editgotoinfourl'] && $infor['checked']) { if ($cr['showdt'] == 1) { $reurl = $public_r[newsurl] . "e/action/ShowInfo/?classid={$classid}&id={$id}"; } elseif ($cr['showdt'] == 2) { $rewriter = eReturnRewriteInfoUrl($classid, $id, 1); $reurl = $rewriter['pageurl']; } else { $reurl = $titleurl; } } printerror("EditQinfoSuccess", $reurl, 1); } else { printerror("DbError", "history.go(-1)", 1); } } elseif ($ecms == 2) { if (!$id) { printerror("ErrorUrl", "history.go(-1)", 1); } //检测权限 $r = CheckQdoinfo($classid, $id, $muserid, $tbname, $cr['adminqinfo'], 2); //附加链接参数 $addecmscheck = empty($r['checked']) ? '&ecmscheck=1' : ''; //返回表信息 $infotbr = ReturnInfoTbname($tbname, $r['checked'], $r['stb']); $stf = $emod_r[$mid]['savetxtf']; $pf = $emod_r[$mid]['pagef']; //分页字段 if ($pf) { if (strstr($emod_r[$mid]['tbdataf'], ',' . $pf . ',')) { $finfor = $empire->fetch1("select " . $pf . " from " . $infotbr['datatbname'] . " where id='{$id}' limit 1"); $r[$pf] = $finfor[$pf]; } } //存文本 if ($stf) { $newstextfile = $r[$stf]; $r[$stf] = GetTxtFieldText($r[$stf]); //删除文件 DelTxtFieldText($newstextfile); } //删除信息文件 DelNewsFile($r[filename], $r[newspath], $classid, $r[$pf], $r[groupid]); $indexsql = $empire->query("delete from {$dbtbpre}ecms_" . $tbname . "_index where id='{$id}'"); $sql = $empire->query("delete from " . $infotbr['tbname'] . " where id={$id} and classid={$classid} and userid='{$muserid}' and ismember=1"); $fsql = $empire->query("delete from " . $infotbr['datatbname'] . " where id={$id}"); esetcookie("qdelinfo", "", 0); //更新栏目信息数 AddClassInfos($classid, '-1', '-1', $r['checked']); //删除其它表记录和附件 DelSingleInfoOtherData($classid, $id, $r, 0, 0); //生成列表 if ($r['checked']) { qAddListHtml($classid, $mid, $cr['qaddlist'], $cr['listdt']); //生成上一篇 if ($cr['repreinfo']) { $prer = $empire->fetch1("select * from {$dbtbpre}ecms_" . $tbname . " where id<{$id} and classid='{$classid}' order by id desc limit 1"); GetHtml($prer['classid'], $prer['id'], $prer, 1); //下一篇 $nextr = $empire->fetch1("select * from {$dbtbpre}ecms_" . $tbname . " where id>{$id} and classid='{$classid}' order by id limit 1"); if ($nextr['id']) { GetHtml($nextr['classid'], $nextr['id'], $nextr, 1); } } } if ($sql) { $reurl = DoingReturnUrl("ListInfo.php?mid={$mid}", $add['ecmsfrom']); printerror("DelQinfoSuccess", $reurl, 1); } else { printerror("DbError", "history.go(-1)", 1); } } else { printerror("ErrorUrl", "", 1); } }