Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

采集器将采集到的内容直接放到待审箱

[复制链接]
lidq.jingwu 发表于 2009-9-24 10:23:23 | 显示全部楼层 |阅读模式
打开admin_robotmessages.php文件,找到下面一段代码:
  1.                         $setsqlarr = array(
  2.                                 'catid' => $_POST['catid'],
  3.                                 'uid' => $item['uid'],
  4.                                 'username' => $item['username'],
  5.                                 'type' => 'news',
  6.                                 'subject' => $item['subject'],
  7.                                 'dateline' => $item['dateline'],
  8.                                 'lastpost' => $item['dateline'],
  9.                                 'hash' => $hashstr,
  10.                                 'haveattach' => ($item['haveattach']==1?1:0)
  11.                         );
复制代码
修改为:
  1.                         $setsqlarr = array(
  2.                                 'catid' => $_POST['catid'],
  3.                                 'uid' => $item['uid'],
  4.                                 'username' => $item['username'],
  5.                                 'type' => 'news',
  6.                                 'folder' => '2',
  7.                                 'subject' => $item['subject'],
  8.                                 'dateline' => $item['dateline'],
  9.                                 'lastpost' => $item['dateline'],
  10.                                 'hash' => $hashstr,
  11.                                 'haveattach' => ($item['haveattach']==1?1:0)
  12.                         );
复制代码
打开function/admin.func.php文件,找到函数:messageaddtodb
在函数中找到下面一段代码:
  1.                         $insertsqlarr = array(
  2.                                 'catid' => $msgarr['importcatid'],
  3.                                 'uid' => $uid,
  4.                                 'username' => saddslashes($username),
  5.                                 'type' => 'news',
  6.                                 'subject' => saddslashes($msgarr['subject']),
  7.                                 'dateline' => $msgarr['dateline'],
  8.                                 'lastpost' => $msgarr['dateline'],
  9.                                 'hash' => $hashstr,
  10.                                 'haveattach' => (!empty($msgarr['patharr'])?1:0)
  11.                         );
复制代码
将它改为:
  1.                         $insertsqlarr = array(
  2.                                 'catid' => $msgarr['importcatid'],
  3.                                 'uid' => $uid,
  4.                                 'username' => saddslashes($username),
  5.                                 'type' => 'news',
  6.                                 'folder' => '2',
  7.                                 'subject' => saddslashes($msgarr['subject']),
  8.                                 'dateline' => $msgarr['dateline'],
  9.                                 'lastpost' => $msgarr['dateline'],
  10.                                 'hash' => $hashstr,
  11.                                 'haveattach' => (!empty($msgarr['patharr'])?1:0)
  12.                         );
复制代码
保存后即可。
abcnic18 发表于 2009-9-25 14:00:31 | 显示全部楼层
沙发支持·! 学习了
回复

使用道具 举报

董事会 发表于 2009-12-2 14:55:47 | 显示全部楼层
收藏了,谢谢!
回复

使用道具 举报

a89671557 发表于 2010-7-21 17:13:17 | 显示全部楼层
先收藏起来
回复

使用道具 举报

a89671557 发表于 2010-7-21 17:36:24 | 显示全部楼层
经过测试,楼上的方法不可用
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-15 01:41 , Processed in 0.023585 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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