为什么我安装以后,标题变成类似<font style="color: #7f00ff; font-weight: bold;font-style: italic;text-decoration: underline;">[转帖]11111111111111111</font>
这个样子了啊,555~~~~我查了许多次也查不出错误的
附件为我的topicadmin.php forumdisplay.php viewthread.htm
我的地址为:http://60.30.240.252:88/hyelan/bbs/
麻烦能帮我看看吗?
- <?php
- /*
- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- :: [DISCUZ!] Crossday Discuz! Board ::
- :: (c) 2001-2005 Comsenz Technology Ltd (www.discuz.com) ::
- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- :: Author: Crossday (tech@discuz.com) Cnteacher (cnteacher@discuz.com) ::
- :: Version: 2.5F 2004/10/01 05:15 ::
- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- */
- //fix: BY pk0909
- /*
- 1 对分割后的主题缺少html转义处理
- 2 跳转的url参数问题
- 3 批量删除主题时,没有删除对应附件
- */
- require './include/common.php';
- require_once DISCUZ_ROOT.'./include/post.php';
- require $discuz_root.'./include/discuzcode.php';
- //全局定义短信内容之一
- $msg_2="
- 如有疑问,请查看[url=http://www.i-sx.net/rules.php]社区守则[/url]以及各版块置顶的管理规则,或[url=http://www.i-sx.net/post.php?action=newthread&fid=15]向管理员反映[/url]。";
- //全局定义短信内容之一
- $jfkarmaoptions = '';
- $jf=$jfmaxkarmarate = "10"; //积分最高或最低限额设定
- $jfoffset = ceil($jfmaxkarmarate / 10);
- for($jfvote = - $jfmaxkarmarate + $jfoffset; $jfvote <= $jfmaxkarmarate; $jfvote += $jfoffset) {
- $jfvotenum = $jfvote > 0 ? '+'.$jfvote : $jfvote;
- if ($jfvote=="-1"){$selected="selected";}
- $jfkarmaoptions .= $jfvote ? "<option value="$jfvote" $selected>$jfvotenum</option>\n" : NULL;
- $selected="";
- }
- unset($jfvote, $jfvotenum, $jfoffset);
- $lbkarmaoptions = '';
- $lb=$lbmaxkarmarate = "30"; //社区币最高或最低限额设定
- $lboffset = ceil($lbmaxkarmarate / 30);
- for($lbvote = - $lbmaxkarmarate + $lboffset; $lbvote <= $lbmaxkarmarate; $lbvote += $lboffset) {
- $lbvotenum = $lbvote > 0 ? '+'.$lbvote : $lbvote;
- if ($lbvote== "-1"){$selected="selected";}
- $lbkarmaoptions .= $lbvote ? "<option value="$lbvote" $selected>$lbvotenum</option>\n" : NULL;
- $selected=""; }
- unset($lbvote, $lbvotenum, $lboffset);
- ////操作原因,分值判断
- function ctrl_msg(){
- global $title,$content,$docredit,$domoney,$msg,$jf,$lb;
- $title = dhtmlspecialchars(censor(trim($title)));
- $content = dhtmlspecialchars(censor(trim($content)));
- $docredit = dhtmlspecialchars(censor(trim($docredit)));
- $domoney = dhtmlspecialchars(censor(trim($domoney)));
- $msg = trim(censor(parseurl($msg)));
- if($title =="" and $content ==""){showmessage('admin_ctrl_invalid');}
- if ($docredit >$jf or $docredit < -$jf or $domoney >$lb or $domoney < -$lb){showmessage('admin_ctrl2_invalid');}
- }
- ////操作原因,分值判断
- $discuz_action = 151;
- $tid = $tid ? $tid :'';
- $page = intval($page);
- $fpage = intval($fpage);
- if($tid) {
- $query = $db->query("SELECT * FROM $table_threads WHERE tid='$tid'");
- $thread = $db->fetch_array($query);
- $thread['subject'] .= $action == 'delthread' ? ", etc." : NULL;
- }
- if($forum['type'] == 'forum') {
- $navigation = "» <a href="forumdisplay.php?fid=$fid&page=$fpage">$forum[name]</a> » <a href="viewthread.php?tid=$tid">$thread[subject]</a> ";
- $navtitle = ' - '.strip_tags($forum['name']).' - '.$thread['subject'];
- } else {
- $query = $db->query("SELECT name, fid, moderator FROM $table_forums WHERE fid='$forum[fup]'");
- $fup = $db->fetch_array($query);
- $navigation = "» <a href="forumdisplay.php?fid=$fup[fid]">$fup[name]</a> » <a href="forumdisplay.php?fid=$fid&page=$fpage">$forum[name]</a> » <a href="viewthread.php?tid=$tid">$thread[subject]</a> ";
- $navtitle = ' - '.strip_tags($fup['name']).' - '.strip_tags($forum['name']).' - '.$thread['subject'];
- }
- if(!$discuz_user || !$discuz_pw || !modcheck($discuz_user)) {
- showmessage('admin_nopermission', NULL, 'HALTED');
- }
- $fupadd = $fup ? "OR (fid='$fup[fid]' && type<>'group')" : NULL;
- if($action == 'moderate') {
- if(!is_array($moderate) || !count($moderate)) {
- showmessage('admin_moderate_nothread');
- }elseif(!$operation){
- showmessage('admin_moderate_nooperation');
- }
- $tids = implode_ids($moderate);
- $query = $db->query("SELECT * FROM $table_threads WHERE tid IN($tids) ");
- accesscheck($query);
- $query = $db->query("SELECT * FROM $table_threads WHERE tid IN($tids) ");
- if(!submitcheck('moderatesubmit')){
- $threadlist = array();
- while($thread = $db->fetch_array($query)) {
- if($thread['fid'] == $fid){
- $thread['lastposterenc'] = rawurlencode($thread['lastposter']);
- if($thread['attachment']) {
- require_once DISCUZ_ROOT.'./include/attachment.php';
- $thread['attachment'] = attachtype($thread['attachment']).' ';
- } else {
- $thread['attachment'] = '';
- }
- $thread[subject] = cutstr($thread[subject],77);
- $thread['dateline'] = gmdate($dateformat, $thread['dateline'] + $timeoffset * 3600);
- $thread['lastpost'] = gmdate("$dateformat $timeformat", $thread['lastpost'] + $timeoffset * 3600);
- $threadlist[] = $thread;
- }
- }
-
- if(!$threadlist) showmessage('admin_moderate_nothread');
- if($operation == 'move') {
- require_once DISCUZ_ROOT.'./include/forum.php';
- $forumselect = forumselect();
- }
- include template('topicadmin_moderate');
-
- }else{
-
- if($operation == 'move' && $allowmove) {
- if(!$moveto) {
- showmessage('admin_move_invalid');
- }
-
- ctrl_msg(); //调用函数
- $query= $db->query("SELECT name FROM $table_forums WHERE fid=$fid");
- while($result = $db->fetch_array($query))
- {
- $czfirstfn = $result['name'];
- }
-
- $query= $db->query("SELECT name FROM $table_forums WHERE fid=$moveto");
- while($result = $db->fetch_array($query))
- {
- $czsecondfn = $result['name'];
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid IN ($tids)");
- $czsubject="移动主题短消息通知";
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被转移,且进行了 积分$docredit, 论坛币$domoney 的操作!";
- }else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被转移,没有对您的分值进行操作!";
- }
- $msg_3="\n\n你的贴子由\n\n $czfirstfn 版块\n\n移到\n\n $czsecondfn 版块";
- $msgtext=$msg_1.$msg.$msg_3.$msg_2;
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$memberid[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$memberid[authorid]'");
- }
-
- } else{
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid IN ($tids)");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- $displayorderadd = !$adminglobal ? ", displayorder='0'" : NULL;
- $db->query("UPDATE $table_threads SET fid='$moveto' $displayorderadd WHERE tid IN($tids)");
- $db->query("UPDATE $table_posts SET fid='$moveto' WHERE tid IN($tids) ");
- if ($forum['type'] == 'sub') {
- $query= $db->query("SELECT fup FROM $table_forums WHERE fid='$fid' LIMIT 1");
- $fup = $db->result($query, 0);
- updateforumcount($fup);
- }
- modlog();
- updateforumcount($moveto);
- updateforumcount($fid);
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$page");
- }elseif($operation == 'stick' && $allowtop){
-
- ctrl_msg(); //调用函数
- if($level < 0 || $level > 3) {
- showmessage('undefined_action');
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid IN ($tids)");
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- while($memberid = $db->fetch_array($query)) {
- if($level=="0"){if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被解除置顶,且进行了 积分$docredit, 论坛币$domoney 的操作!";
- $action_m="解除置顶";
- }else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被解除置顶,没有对您的分值进行操作!";
- $action_m="解除置顶";}
- }else{if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被置顶,且进行了 积分$docredit, 论坛币$domoney 的操作!";
- $action_m="置顶";}else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被置顶,没有对您的分值进行操作!";
- $action_m="置顶";}}
- $msgtext=$msg_1.$msg.$msg_2;
- $czsubject=$action_m."主题短消息通知";
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$memberid[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$memberid[authorid]'");
- }
-
- } else{
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid IN ($tids)");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- $db->query("UPDATE $table_threads SET displayorder='$level' WHERE tid IN ($tids)");
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$page");
- }elseif($operation == 'delete' && $allowdelpost) {
-
- ctrl_msg(); //调用函数
- $uids = $comma = '';
- $haveattach = 0;
- $query = $db->query("SELECT authorid ,aid FROM $table_posts WHERE tid IN ($tids)");
- while($post = $db->fetch_array($query)) {
- $uids .= "$comma$post[authorid]";
- $comma = ',';
- if ($post['aid']) $haveattach++;
- }
- updatemember('-', $uids, '0');
-
- if ($haveattach){
- $query = $db->query("SELECT attachment FROM $table_attachments WHERE tid IN ($tids)");
- while($attach = $db->fetch_array($query)) {
- @unlink(DISCUZ_ROOT.'./'.$attachdir.'/'.$attach['attachment']);
- }
- $db->query("DELETE FROM $table_attachments WHERE tid IN ($tids)");
- }
-
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid IN ($tids)");
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被删除,且进行了 积分$docredit, 论坛币$domoney 的操作!";
- }else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被删除,没有对您的分值进行操作!";
- }
- $msgtext=$msg_1.$msg.$msg_2;
- $czsubject=$action_m."主题短消息通知";
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$memberid[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$memberid[authorid]'");
- }
-
- } else{
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid IN ($tids)");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- $db->query("DELETE FROM $table_threads WHERE tid IN ($tids)");
- $db->query("DELETE FROM $table_polls WHERE tid IN ($tids)");
- $db->query("DELETE FROM $table_posts WHERE tid IN ($tids)");
- if ($forum['type'] == 'sub') {
- updateforumcount($fup['fid']);
- }
- updateforumcount($fid);
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$page");
- }elseif($operation == 'close' && $allowclose){
-
- ctrl_msg(); //调用函数
- $close = $type ? 1 : 0;
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid IN ($tids)");
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- while($memberid = $db->fetch_array($query)) {
- if($type=="0"){
- if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被解除锁定,且进行了 积分$docredit, 论坛币$domoney 的操作!";$action_m="解除锁定";
- }else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被解除锁定,没有对您的分值进行操作!";$action_m="解除锁定";
- }
- }else{if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被锁定,且进行了 积分$docredit, 论坛币$domoney 的操作!";$action_m="锁定";
- }else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被锁定,没有对您的分值进行操作!";$action_m="锁定";
- }}
- $msgtext=$msg_1.$msg.$msg_2;
- $czsubject=$action_m."主题短消息通知";
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$memberid[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$memberid[authorid]'");
- }
-
- } else{
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid IN ($tids)");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- $db->query("UPDATE $table_threads SET closed='$close' WHERE tid in($tids)");
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$page");
- }
- /*取消批量加入精华
- elseif($operation == 'digest' && $allowdigest){
- if($level < 0 || $level > 3) {
- showmessage('undefined_action', NULL, 'HALTED');
- }
- while($thread = $db->fetch_array($query)) {
- if ($thread['fid'] == $fid && $thread['digest']<>$level){
- $digest_mark=($level-intval($thread['digest']))*$digestcredits;
- $db->query("UPDATE $table_threads SET digest='$level' WHERE tid='$thread[tid]'");
- if($digest_mark && $discuz_uid != $thread[authorid]) {
- $db->query("UPDATE $table_members SET credit=credit".($digest_mark > 0 ? '+' : '')."$digest_mark WHERE uid='$thread[authorid]'");
- }
- }
- }
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$page");
- }
-
- 取消批量加入精华 */
- else{
- showmessage('admin_nopermission', NULL, 'HALTED');
- }
- }
- } elseif($action == 'delpost' && $allowdelpost) {
- if(!is_array($delete) || !count($delete)) {
- showmessage('admin_delpost_invalid');
- }
- if(!submitcheck('delpostsubmit')) {
- $query = $db->query("SELECT COUNT(*) FROM $table_posts WHERE tid='$tid'");
- if(count($delete) < $db->result($query, 0)) {
- $deleteid = '';
- foreach($delete as $id) {
- $deleteid .= '<input type="hidden" name="delete[]" value="'.$id.'">';
- }
- include template('topicadmin_delpost');
-
- } else {
- header("Location: {$boardurl}topicadmin.php?action=delete&fid=$fid&tid=$tid&page=$page&fpage=$fpage");
- }
- } else {
- $pids = implode_ids( $delete );
- ctrl_msg(); //调用函数
- $uids = $comma = '';
- $actionpost = $totalpost = $aids = 0;
- $query = $db->query("SELECT pid, authorid, aid FROM $table_posts WHERE tid='$tid'");
- $totalpost = $db->num_rows($query);
- while($post = $db->fetch_array($query)) {
- if (in_array($post[pid], $delete)){
- $uids .= "$comma$post[authorid]";
- $comma = ',';
- $actionpost ++;
- if ($post['aid']) $aids .=','.$post[pid];
- }
- }
- if ($actionpost < 1) {
- showmessage('admin_delpost_invalid');
- }elseif($actionpost <> count($delete)){
- showmessage('admin_moderate_accesserror', NULL, 'HALTED');
- }elseif($actionpost >= $totalpost ){
- header("Location: {$boardurl}topicadmin.php?action=delete&fid=$fid&tid=$tid&page=$page&fpage=$fpage");
- }
-
- updatemember('-', $uids, '0');
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- $query = $db->query("SELECT authorid, subject FROM $table_posts WHERE pid IN ($pids)");
- $czsubject="删除帖子短消息通知";
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $msg_1="您在帖子“".$temsubject."”的回贴因[b] ".$title." [/b]而被删除,且进行了 积分$docredit, 论坛币$domoney 的操作!";
- }else{$msg_1="您在帖子“".$temsubject."”的回贴因[b] ".$title." [/b]而被删除,没有对您的分值进行操作!";
- }
- $msgtext=$msg_1.$msg.$msg_2;
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$memberid[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$memberid[authorid]'");
- }
-
- } else{
- $query = $db->query("SELECT authorid FROM $table_posts WHERE pid IN ($pids)");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- if ($aids){
- require_once DISCUZ_ROOT.'./include/attachment.php';
- $query = $db->query("SELECT pid, attachment, filetype FROM $table_attachments WHERE pid IN ($aids)");
- while($attach = $db->fetch_array($query)) {
- @unlink(DISCUZ_ROOT.'./'.$attachdir.'/'.$attach['attachment']);
- }
- $db->query("DELETE FROM $table_attachments WHERE pid IN ($aids)");
- updatethread_type($tid , $thread['attachment']);
- }
- $db->query("DELETE FROM $table_posts WHERE pid IN ($pids)");
- updatethreadcount($tid);
- updateforumcount($fid);
- modlog();
- showmessage('admin_succeed', "viewthread.php?tid=$tid&page=$page&fpage=$fpage");
- }
- } elseif($action == 'highlight' && $allowhighlight) {
- if(!submitcheck('highlightsubmit')) {
- $string = sprintf('%02d', $thread['highlight']);
- $stylestr = sprintf('%03b', $string[0]);
- for($i = 1; $i <= 3; $i++) {
- $stylecheck[$i] = $stylestr[$i - 1] ? 'checked' : NULL;
- }
- $colorcheck = array($string[1] => 'checked');
-
- include template('topicadmin_highlight');
- } else {
- $stylebin = '';
- for($i = 1; $i <= 3; $i++) {
- $stylebin .= empty($highlight_style[$i]) ? '0' : '1';
- }
- $highlight_style = bindec($stylebin);
- if($highlight_style < 0 || $highlight_style > 7 || $highlight_color < 0 || $highlight_color > 8) {
- showmessage('undefined_action', NULL, 'HALTED');
- }
- $db->query("UPDATE $table_threads SET highlight='$highlight_style$highlight_color' WHERE tid='$tid'");
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- }
- }
- //=====八种自定义参数标题醒目+任意颜色高亮==start==By www.5466.ik8.com==============
- elseif($action == 'xm_highlight' && $allowhighlight) {
- if(!submitcheck('xm_highlightsubmit')) {
-
- $xm_hl_string=explode(',',$thread['xm_hl']);
-
- for($i = 1; $i <=10; $i++) {
- $xu_check[$i] =$i==$xm_hl_string[0] ? 'checked' : NULL;
-
- }
- if($xm_hl_string[0]){
- switch($xm_hl_string[0]){
-
- case 1: $xm_id_11=$xm_hl_string[1];$xm_id_12=$xm_hl_string[2];$xm_id_13=$xm_hl_string[3];$xm_id_14=$xm_hl_string[4];
- break;
-
- case 2:
- $xm_id_21=$xm_hl_string[1];$xm_id_22=$xm_hl_string[2];$xm_id_23=$xm_hl_string[3];$xm_id_24=$xm_hl_string[4];
- break;
-
- case 3:
- $xm_id_31=$xm_hl_string[1];$xm_id_32=$xm_hl_string[2];$xm_id_33=$xm_hl_string[3];$xm_id_34=$xm_hl_string[4];
- break;
-
- case 4:
- $xm_id_41=$xm_hl_string[1];$xm_id_42=$xm_hl_string[2];$xm_id_43=$xm_hl_string[3];$xm_id_44=$xm_hl_string[4];
- break;
-
- case 5:
- $xm_id_51=$xm_hl_string[1];$xm_id_52=$xm_hl_string[2];
- break;
-
- case 6:
- $xm_id_61=$xm_hl_string[1];$xm_id_62=$xm_hl_string[2];$xm_id_63=$xm_hl_string[3];
- break;
- case 7:
- $xm_id_71=$xm_hl_string[1];$xm_id_72=$xm_hl_string[2];$xm_id_73=$xm_hl_string[3];
- break;
- case 8:
- $xm_id_81=$xm_hl_string[1];$xm_id_82=$xm_hl_string[2];$xm_id_83=$xm_hl_string[3];
- break;
- case 9:
- $xm_id_91=$xm_hl_string[1];$xm_id_92=$xm_hl_string[2];
- break;
-
- default: break;
- }
-
- }
- include template('topicadmin_xm_highlight');
- } else {
- $xm_hl_str = '';
-
- if($xm_hl_id==1){$xm_hl_str=$xm_hl_id.','.$font_color.','.$font_size.','.$font_style.','.$font_underline;
-
- }
-
- else if($xm_hl_id==2){$xm_hl_str=$xm_hl_id.','.$text_color1.','.$text_color2.','.$speed_1.','.$pause_1;
-
- }
-
- else if($xm_hl_id==3){ $xm_hl_str=$xm_hl_id.','.$textoffset1.','.$textoffset2.','.$speed_2.','.$pause_2;
-
- }
-
- else if($xm_hl_id==4){ $xm_hl_str=$xm_hl_id.','.$textcolor.','.$textsize1.','.$speed_3.','.$pause_3;
-
- }
-
- else if($xm_hl_id==5){ $xm_hl_str=$xm_hl_id.','.$sider_color.','.$text_color;
-
- }
-
- else if($xm_hl_id==6){ $xm_hl_str=$xm_hl_id.','.$start_color.','.$start_n.','.$end_color;
-
- }
- else if($xm_hl_id==7){ $xm_hl_str=$xm_hl_id.','.$glow_color1.','.$glow_pow.','.$glow_color2;
-
- }
- else if($xm_hl_id==8){ $xm_hl_str=$xm_hl_id.','.$shadow_color1.','.$shadow_view.','.$shadow_color2;
-
- }
- else if($xm_hl_id==9){ $xm_hl_str=$xm_hl_id.','.$bg_color.','.$face_color;
-
- }
- else if($xm_hl_id==10){ $xm_hl_str=$xm_hl_id;
-
- }
-
- else if($xm_hl_id==11){ $xm_hl_str='';
-
- }
-
- else showmessage('undefined_action');
-
-
- if(strlen($xm_hl_str)>25){ $xm_hl_str=substr($xm_hl_str,0, 25);}
-
-
- $db->query("UPDATE $table_threads SET xm_hl='$xm_hl_str' WHERE tid='$tid'");
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
-
- }
- }
- //=====八种自定义参数标题醒目+任意颜色高亮==end==By lu5266=====================
- elseif($action == 'digest' && $allowdigest) {
- if(!submitcheck('digestsubmit')) {
- include template('topicadmin_digest');
- } else {
- if($level < 0 || $level > 3) {
- showmessage('undefined_action', NULL, 'HALTED');
- }
- $db->query("UPDATE $table_threads SET digest='$level' WHERE tid='$tid'");
- ctrl_msg(); //调用函数
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- if($level > 0){
- if ($updateur != "1") {
- $msg_1="您发表的帖子“".$temsubject."“因[b] ".$title." [/b]而被加入了精华,且进行了 积分$docredit, 论坛币$domoney 的操作!";$action_m="加入精华";
- }else{$msg_1="您发表的帖子“".$temsubject."“因[b] ".$title." [/b]而被加入精华,没有对您的分值进行操作!";$action_m="加入精华";
- }
- }else{if ($updateur != "1") {
- $msg_1="您发表的帖子“".$temsubject."“因[b] ".$title." [/b]而被解除精华,且进行了 积分$docredit, 论坛币$domoney 的操作!";$action_m="解除精华";
- }else{$msg_1="您发表的帖子“".$temsubject."“因[b] ".$title." [/b]而被解除精华,没有对您的分值进行操作!";$action_m="解除精华";
- }}
- $msgtext=$msg_1.$msg.$msg_2;
- $czsubject=$action_m."短消息通知";
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$thread[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
-
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$thread[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$thread[authorid]'");
-
-
- } else{
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$thread[authorid]'");
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- /* 禁止根据精华级别进行加积分
- $digest_mark=($level-intval($thread['digest']))*$digestcredits;
- if($digest_mark && $discuz_uid != $thread['authorid'] ) {
- $db->query("UPDATE $table_members SET credit=credit".($digest_mark > 0 ? '+' : '')."$digest_mark WHERE uid='$thread[authorid]'");
- }
- */
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- }
- } elseif($action == 'recount') {
- $query = $db->query("SELECT COUNT(*) FROM $table_posts WHERE tid='$tid'");
- $replies = $db->result($query, 0) - 1;
- $query = $db->query("SELECT author, dateline FROM $table_posts WHERE tid='$tid' ORDER BY dateline DESC LIMIT 1");
- $post = $db->fetch_array($query);
- $db->query("UPDATE $table_threads SET replies='$replies', lastpost='$post[dateline]', lastposter='".addslashes($post['author'])."' WHERE tid='$tid'");
- showmessage('admin_succeed', "viewthread.php?tid=$tid&fpage=$fpage");
- } elseif($action == 'delete' && $allowdelpost) {
- if(!submitcheck('deletesubmit')) {
- include template('topicadmin_delete');
- } else {
- ctrl_msg(); //调用函数
- $uids = $comma = '';
- $query = $db->query("SELECT authorid,aid FROM $table_posts WHERE tid='$tid'");
- $aids = 0;
- while($post = $db->fetch_array($query)) {
- $uids .= "$comma$post[authorid]";
- $comma = ',';
- if ($post['aid']) $aids++;
- }
- updatemember('-', $uids, '0');
- if($ynmsg==1)
- {
- $czsubject="删除主题短消息通知";
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid='$tid'");
- while($memberidz = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberidz[subject]."“因[b] ".$title." [/b]而被删除,且进行了 积分$docredit, 论坛币$domoney 的操作!";
- }else{$msg_1="您发表的帖子“".$memberidz[subject]."“因[b] ".$title." [/b]而被删除,没有对您的分值进行操作!";
- }
- $msgtext=$msg_1.$msg.$msg_2;
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$memberidz[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$memberidz[authorid]'"); }
-
- $query = $db->query("SELECT authorid, subject FROM $table_posts WHERE tid='$tid'");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
-
- } else{
- $query = $db->query("SELECT authorid, subject FROM $table_posts WHERE tid='$tid'");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- $db->query("DELETE FROM $table_threads WHERE tid='$tid'");
- $db->query("DELETE FROM $table_posts WHERE tid='$tid'");
- $db->query("DELETE FROM $table_polls WHERE tid='$tid'");
- if ($aids){
- $query = $db->query("SELECT attachment FROM $table_attachments WHERE tid='$tid'");
- while($attach = $db->fetch_array($query)) {
- @unlink(DISCUZ_ROOT.'./'.$attachdir.'/'.$attach['attachment']);
- }
- $db->query("DELETE FROM $table_attachments WHERE tid='$tid'");
- }
-
- updateforumcount($fid);
- if ($forum['type'] == 'sub') {
- updateforumcount($fup['fid']);
- }
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- }
- } elseif($action == 'close' && $allowclose) {
- if(!submitcheck('closesubmit')) {
- include template('topicadmin_openclose');
- } else {
- ctrl_msg(); //调用函数
- $openclose = $thread['closed'] ? 0 : 1;
- $db->query("UPDATE $table_threads SET closed='$openclose' WHERE tid='$tid' AND fid='$fid'");
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid='$tid' AND fid='$fid'");
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- while($memberid = $db->fetch_array($query)) {
- if($type=="0"){
- if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被解除锁定,且进行了 积分$docredit, 论坛币$domoney 的操作!";$action_m="解除锁定";
- }else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被解除锁定,没有对您的分值进行操作!";$action_m="解除锁定";
- }
- }else{if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被锁定,且进行了 积分$docredit, 论坛币$domoney 的操作!";$action_m="锁定";
- }else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被锁定,没有对您的分值进行操作!";$action_m="锁定";
- }}
- $msgtext=$msg_1.$msg.$msg_2;
- $czsubject=$action_m."主题短消息通知";
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$memberid[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$memberid[authorid]'");
- }
-
- } else{
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid='$tid' AND fid='$fid'");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- }
- } elseif($action == 'move' && $allowmove) {
- if(!submitcheck('movesubmit')) {
- require_once DISCUZ_ROOT.'./include/forum.php';
- $forumselect = forumselect();
- include template('topicadmin_move');
- } else {
- if(!$moveto) {
- showmessage('admin_move_invalid');
- }
- $displayorderadd = !$adminglobal ? ", displayorder='0'" : NULL;
- ctrl_msg(); //调用函数
- $query= $db->query("SELECT name FROM $table_forums WHERE fid=$fid");
- while($result = $db->fetch_array($query))
- {
- $czfirstfn = $result['name'];
- }
-
- $query= $db->query("SELECT name FROM $table_forums WHERE fid=$moveto");
- while($result = $db->fetch_array($query))
- {
- $czsecondfn = $result['name'];
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid='$tid' AND fid='$fid'");
- $czsubject="移动主题短消息通知";
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被转移,且进行了 积分$docredit, 论坛币$domoney 的操作!";
- }else{$msg_1="您发表的帖子“".$memberid[subject]."“因[b] ".$title." [/b]而被转移,没有对您的分值进行操作!";
- }
- $msg_3="\n\n你的贴子由\n\n $czfirstfn 版块\n\n移到\n\n $czsecondfn 版块";
- $msgtext=$msg_1.$msg.$msg_3.$msg_2;
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$memberid[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$memberid[authorid]'");
- }
-
- } else{
- $query = $db->query("SELECT authorid, subject FROM $table_threads WHERE tid='$tid' AND fid='$fid'");
- while($memberid = $db->fetch_array($query)) {
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$memberid[authorid]'");
- }
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($type == 'normal') {
- $db->query("UPDATE $table_threads SET fid='$moveto' $displayorderadd WHERE tid='$tid' AND fid='$fid'");
- $db->query("UPDATE $table_posts SET fid='$moveto' WHERE tid='$tid' AND fid='$fid'");
- }
- if ($forum['type'] == 'sub') {
- $query= $db->query("SELECT fup FROM $table_forums WHERE fid='$fid' LIMIT 1");
- $fup = $db->result($query, 0);
- updateforumcount($fup);
- }
- modlog();
- updateforumcount($moveto);
- updateforumcount($fid);
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- }
- } elseif($action == 'top' && $allowtop) {
- if(!submitcheck('topsubmit')) {
- include template('topicadmin_topuntop');
- } else {
- if($level < 0 || $level > 3) {
- showmessage('undefined_action');
- }
- ctrl_msg(); //调用函数
- //帖子操作短信通知 hack by xiori 2005-3-18
- if($ynmsg==1)
- {
- if($content !=""){$title=$content;}
- if ($msg !=""){
- $msg="
- 以下为".$discuz_user."给您的附言:[color=blue]".$msg."[/color]";
- }
- if($level > 0){
- if ($updateur != "1") {
- $msg_1="您发表的帖子“".$temsubject."“因[b] ".$title." [/b]而被置顶,且进行了 积分$docredit, 论坛币$domoney 的操作!";$action_m="置顶";
- }else{$msg_1="您发表的帖子“".$temsubject."“因[b] ".$title." [/b]而被置顶,没有对您的分值进行操作!";$action_m="置顶";
- }
- }else{if ($updateur != "1") {
- $msg_1="您发表的帖子“".$temsubject."“因[b] ".$title." [/b]而被解除置顶,且进行了 积分$docredit, 论坛币$domoney 的操作!";$action_m="解除置顶";
- }else{$msg_1="您发表的帖子“".$temsubject."“因[b] ".$title." [/b]而被解除置顶,没有对您的分值进行操作!";$action_m="解除置顶";
- }}
- $msgtext=$msg_1.$msg.$msg_2;
- $czsubject=$action_m."短消息通知";
- $db->query("INSERT INTO $table_pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '$thread[authorid]', 'inbox', '1', '$czsubject', '$timestamp', '$msgtext')");
-
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$thread[authorid]'");
- }
- $db->query("UPDATE $table_members SET newpm='1' WHERE uid='$thread[authorid]'");
-
-
- } else{
- if ($updateur != "1") {
- $db->query("UPDATE $table_members SET money=money+$domoney,credit=credit+$docredit WHERE uid = '$thread[authorid]'");
- }
- }
- //帖子操作短信通知 hack by xiori 2005-3-18
- $db->query("UPDATE $table_threads SET displayorder='$level' WHERE tid='$tid' AND fid='$fid'");
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- }
- } elseif($action == 'getip' && $allowviewip) {
- require_once DISCUZ_ROOT.'./include/misc.php';
- $query = $db->query("SELECT m.adminid, p.useip FROM $table_posts p
- LEFT JOIN $table_members m ON m.uid=p.authorid
- WHERE pid='$pid' AND tid='$tid'");
- if(!$member = $db->fetch_array($query)) {
- showmessage('thread_nonexistence', NULL, 'HALTED');
- } elseif(($member['adminid'] == 1 && $adminid > 1) || ($member['adminid'] == 2 && $adminid > 2)) {
- showmessage('admin_getip_nopermission', NULL, 'HALTED');
- }
- $member['iplocation'] = convertip($member['useip']);
- include template('topicadmin_getip');
- } elseif($action == 'bump') {
- if(!submitcheck('bumpsubmit')) {
- include template('topicadmin_bump');
- } else {
- $query = $db->query("SELECT subject, lastposter, lastpost FROM $table_threads WHERE tid='$tid' LIMIT 1");
- $thread = $db->fetch_array($query);
- $thread[lastposter] = addslashes($thread['lastposter']);
- $db->query("UPDATE $table_threads SET lastpost='$timestamp' WHERE tid='$tid' AND fid='$fid'");
- $db->query("UPDATE $table_forums SET lastpost='$thread[subject]\t$timestamp\t$thread[lastposter]' WHERE fid='$fid' $fupadd");
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- }
- } elseif($action == 'split' && $allowsplit) {
- require_once DISCUZ_ROOT.'./include/discuzcode.php';
- if(!submitcheck('splitsubmit')) {
- $replies = $thread['replies'];
- if($replies <= 0) {
- showmessage('admin_split_invalid');
- }
- $postlist = array();
- $query = $db->query("SELECT * FROM $table_posts WHERE tid='$tid' ORDER BY dateline");
- while($post = $db->fetch_array($query)) {
- $post['message'] = postify($post['message'], $post['smileyoff'], $post['bbcodeoff']);
- $postlist[] = $post;
- }
- include template('topicadmin_split');
- } else {
- if(!trim($subject)) {
- showmessage('admin_split_subject_invalid');
- }
- $subject = $subject ? dhtmlspecialchars(censor(trim($subject))) :'';
- $pids = implode_ids( $split );
- if($pids) {
- $db->query("INSERT INTO $table_threads (fid, subject) VALUES ('$fid', '$subject')");
- $newtid = $db->insert_id();
- $db->query("UPDATE $table_posts SET tid='$newtid' WHERE pid IN ($pids)");
- $db->query("UPDATE $table_attachments SET tid='$newtid' WHERE pid IN ($pids)");
- $query = $db->query("SELECT author, authorid, dateline FROM $table_posts WHERE tid='$tid' ORDER BY dateline ASC LIMIT 1");
- $fpost = $db->fetch_array($query);
- $db->query("UPDATE $table_threads SET author='$fpost[author]', authorid='$fpost[authorid]', dateline='$fpost[dateline]' WHERE tid='$tid'");
- $query = $db->query("SELECT author, authorid, dateline FROM $table_posts WHERE tid='$newtid' ORDER BY dateline ASC LIMIT 1");
- $fpost = $db->fetch_array($query);
- $db->query("UPDATE $table_threads SET author='$fpost[author]', authorid='$fpost[authorid]', dateline='$fpost[dateline]' WHERE tid='$newtid'");
- updatethreadcount($tid);
- updatethreadcount($newtid);
- updateforumcount($fid);
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- } else {
- showmessage('admin_split_new_invalid');
- }
- }
- } elseif($action == 'merge' && $allowmerge) {
- if(!submitcheck('mergesubmit')) {
- include template('topicadmin_merge');
- } else {
- $query = $db->query("SELECT fid, views, replies FROM $table_threads WHERE tid='$othertid'");
- if(!$other = $db->fetch_array($query)) {
- showmessage('admin_merge_nonexistence');
- }
- if(!$adminglobal && $other['fid'] != $forum['fid']) {
- showmessage('admin_merge_invalid');
- }
- $other['views'] = intval($other['views']);
- $other['replies']++;
- $db->query("UPDATE $table_posts SET tid='$tid' WHERE tid='$othertid'");
- $postsmerged = $db->affected_rows();
- $db->query("UPDATE $table_attachments SET tid='$tid' WHERE tid='$othertid'");
- $db->query("DELETE FROM $table_threads WHERE tid='$othertid'");
- $db->query("UPDATE $table_threads SET views=views+$other[views], replies=replies+$other[replies] WHERE tid='$tid'");
-
- if($fid == $other['fid']) {
- $db->query("UPDATE $table_forums SET threads=threads-1 WHERE fid='$fid' $fupadd");
- } else {
- $db->query("UPDATE $table_forums SET threads=threads-1, posts=posts-$postsmerged WHERE fid='$other[fid]'");
- $db->query("UPDATE $table_forums SET posts=$posts+$postsmerged WHERE fid='$fid' $fupadd");
- }
- modlog();
- showmessage('admin_succeed', "forumdisplay.php?fid=$fid&page=$fpage");
- }
- }elseif($action == 'seeip' && $allowviewip) {
- require_once DISCUZ_ROOT.'./include/misc.php';
- if(!$isadmin) {
- showmessage('admin_getip_nopermission', NULL, 'HALTED');
- }
- $member['useip']=$useip;
- $member['iplocation'] = convertip($member['useip']);
- include template('topicadmin_getip');
- } else {
- showmessage('admin_nopermission', NULL, 'HALTED');
- }
- function modlog($action = '') {
- global $discuz_user, $groupid, $adminid, $onlineip, $timestamp, $forum, $thread, $operation, $tids;
- if(!$action) {
- $action = $GLOBALS['action'];
- }
- if (!$thread['tid']) $thread['tid']=intval($GLOBALS['tid']);
- if ($action == 'moderate'){
- $action .='_'.$operation;
- $thread[subject] = $tids;
- $thread[tid] = 0;
- }
- @$fp = fopen(DISCUZ_ROOT.'./forumdata/modslog.php', 'a');
- @flock($fp, 2);
- @fwrite($fp, "$timestamp\t$discuz_user\t$groupid\t$onlineip\t$forum[fid]\t$forum[name]\t$thread[tid]\t$thread[subject]\t$action\n");
- @fclose($fp);
- }
- function accesscheck($query) {
- global $db,$fid;
- while($thread = $db->fetch_array($query)) {
- if($thread['fid'] <> $fid){
- showmessage('admin_moderate_accesserror', NULL, 'HALTED');
- }
- }
- }
- ?>
复制代码
[ 本帖最后由 hyelan 于 2005-10-10 18:39 编辑 ] |