Discuz教程网

[代码修改] 【Discuz!X1.5】修改官方的帖子合并功能,合并到一楼

[复制链接]
authicon dly 发表于 2011-3-12 14:20:31 | 显示全部楼层 |阅读模式
作者:182860498

1,修改source/include/topicadmin/topicadmin_merge.php

找到

  1. $firstpost = DB::fetch_first("SELECT pid, fid, authorid, author, subject, dateline FROM ".DB::table($posttable)." WHERE tid IN ('$_G[tid]', '$othertid') AND invisible='0' ORDER BY dateline LIMIT 1");
复制代码
在其下加
  1.     //合并主题时合并主题帖
  2.     $otherposttable=getposttablebytid($othertid);
  3.     $otherpost=DB::fetch_first("SELECT pid,message,attachment,dateline FROM ".DB::table($otherposttable)." where tid='$othertid' and first=1 limit 1");
  4.     $otherpostmessage=daddslashes($otherpost['message']);
  5.     $thispid=DB::result_first("SELECT pid FROM ".DB::table($posttable)." where tid='{$_G['tid']}' and first=1 limit 1");
  6.     DB::query("UPDATE ".DB::table($posttable)." SET `message`=CONCAT(`message`,'\n$otherpostmessage'),dateline='{$firstpost['dateline']}' WHERE pid='$thispid' limit 1");
  7.     DB::query("UPDATE ".DB::table('forum_attachment')." SET pid='{$thispid}' WHERE pid='{$otherpost['pid']}'");
  8.     if($otherpost['attachment']){
  9.         DB::query("UPDATE ".DB::table($posttable)." SET attachment='{$otherpost['attachment']}' WHERE pid='{$thispid}'");
  10.         //DB::query("UPDATE ".DB::table("forum_thread")." SET attachment='{$otherpost['attachment']}' WHERE tid='{$_G['tid']}'");
  11.     }
  12.     DB::query("DELETE FROM ".DB::table($otherposttable)." WHERE pid='{$otherpost['pid']}'");
  13.     //合并主题时合并主题帖
复制代码






上一篇:【Discuz!X1.5】主题操作记录美化
下一篇:【Discuz!X1.5】帖子编辑后自动提升
authicon 乐娃娃 发表于 2011-5-7 00:07:36 | 显示全部楼层
回贴下载呀
authicon forever21 发表于 2011-5-9 00:59:47 | 显示全部楼层
很好的,我喜欢
authicon D_hong 发表于 2011-5-9 18:59:59 | 显示全部楼层
好像不错的样子
authicon 蓝色天空k 发表于 2011-5-10 10:59:56 | 显示全部楼层
谢谢,学习了
authicon 82xiaochong911 发表于 2011-5-15 20:59:38 | 显示全部楼层
楼主真强大
authicon 咫尺天 发表于 2011-5-21 10:53:39 | 显示全部楼层
顶啦,不错吧
authicon 纤陌陌 发表于 2011-5-22 12:59:56 | 显示全部楼层
万分感谢楼主
authicon 婷婷爱牛牛 发表于 2011-5-25 17:59:34 | 显示全部楼层
我回不回呢 考虑再三 还是不回了吧 ^_^
authicon 婷婷爱牛牛 发表于 2011-5-27 07:59:44 | 显示全部楼层
不错不错,我喜欢
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

1314学习网 ( 浙ICP备10214163号 )

GMT+8, 2025-5-2 16:16

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表