蓝雨 发表于 2011-8-8 16:44:20

x2 使用QQ微博转播时+发帖时QQ微博转播增加话题

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,
      );
页: [1]
查看完整版本: x2 使用QQ微博转播时+发帖时QQ微博转播增加话题