|
source/plugin/qqconnect/spacecp.ini.php
搜索- $params['reason'] = $_G['gp_reason'];
复制代码 在下面增加- $params['reason'] = '#Yx论坛图享#'.$params['reason'];
复制代码 保存 即可
source/module/conect/connect_feed.php
搜索- $params = array(
- 'client_ip' => $_G['clientip'],
- 'thread_id' => $tid,
- 'author_id' => $thread['authorid'],
- 'author' => $thread['author'],
- 'forum_id' => $thread['fid'],
- 'p_id' => $post['pid'],
- 'u_id' => $_G['uid'],
- 'subject' => $thread['subject'],
- 'bbcode_content' => $post['message'],
- 'read_permission' => $thread['readperm'],
- 'f_type' => $f_type,
- );
复制代码 改为- $params = array(
- 'client_ip' => $_G['clientip'],
- 'thread_id' => $tid,
- 'author_id' => $thread['authorid'],
- 'author' => $thread['author'],
- 'forum_id' => $thread['fid'],
- 'p_id' => $post['pid'],
- 'u_id' => $_G['uid'],
- 'subject' => '#Yx论坛图享#'.$thread['subject'],
- 'bbcode_content' => $post['message'],
- 'read_permission' => $thread['readperm'],
- 'f_type' => $f_type,
- );
复制代码 |
|