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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
123
返回列表 发新帖

[插件] 會員自訂_帖子內顯示別人簽名4款方式選擇__________◢ 2006-2-19 00:23 增加一款 ◣

[复制链接]
zl811024 发表于 2006-2-18 11:03:05 | 显示全部楼层
不错,谢谢收下了!
回复

使用道具 举报

 楼主| 別問我是誰 发表于 2006-2-19 00:35:50 | 显示全部楼层
===========  2006-2-19 00:23 安裝過的可跟以下加多一種 ===========

別人簽名的圖改為連接 (可顯示自己)

及更新使用 [img=xxx,xxx]http://xxxxxx.xx[/img] 不能正常修改


viewthread.php 找
  1.         if($showsignature == 2 && $post['uid'] != $discuz_uid){
  2.         $post['signature'] = preg_replace("/\<img src="\s*(.+?)\s*"\>/is", '', $post['signature']);
  3.         }
复制代码

或找
  1.         if($showsignature == 2 && $post['uid'] != $discuz_uid){
  2.         $post['signature'] = preg_replace("/\<img src="(.+?)"\>/is", '', $post['signature']);
  3.         }elseif($showsignature == 3 && $post['uid'] != $discuz_uid){
  4.         $post['signature'] = preg_replace("/\<img src="(.+?)" (.+?)"\>/is", "<a href="\\1" target="_blank">\\1</a><br>", $post['signature']);
  5.         }
复制代码

改為
  1.         if($showsignature == 2 && $post['uid'] != $discuz_uid){
  2.         $post['signature'] = preg_replace("/\<img src="(.+?)"\>/is", '', $post['signature']);
  3.         $post['signature'] = preg_replace("/\<img width="(.+?)" height="(.+?)" src="(.+?)"\>/is", '', $post['signature']);
  4.         }elseif($showsignature == 3 && $post['uid'] != $discuz_uid){
  5.         $post['signature'] = preg_replace("/\<img src="(.+?)" (.+?)"\>/is", "<a href="\\1" target="_blank">\\1</a><br>", $post['signature']);
  6.         $post['signature'] = preg_replace("/\<img width="(.+?)" height="(.+?)" src="(.+?)" (.+?)"\>/is", "<a href="\\3" target="_blank">\\3</a><br>", $post['signature']);
  7.         }
复制代码

templates/default/templates.lang.php 找
  1.         'showusersignature' => '帖子內顯示別人簽名方式',
复制代码

之下加入
  1.         'showusersignature3' => '別人簽名的圖改為連接 (可顯示自己)',
复制代码

templates/default/memcp_profile.htm 找
  1. <td class="altbg2"><select name="showsignaturenew">
复制代码

之下加入
  1. <option value="3" name="showsignaturenew" $checkshowsigna[3]>{lang showusersignature3}</option>
复制代码

===========   2006-2-19 00:23 安裝過的可跟以下加多一種 結束 =========
回复

使用道具 举报

hkttsd 发表于 2006-2-19 07:52:39 | 显示全部楼层
我的viewthread.php找不到


  1. if($showsignature == 2 && $post['uid'] != $discuz_uid){
  2.         $post['signature'] = preg_replace("/\<img src="\s*(.+?)\s*"\>/is", '', $post['signature']);
  3.         }
复制代码

  1. <?php

  2. /*
  3.         [DISCUZ!] viewthread.php - view thread posts
  4.         This is NOT a freeware, use is subject to license terms

  5.         Version: 4.0.0
  6.         Web: http://www.comsenz.com
  7.         Copyright: 2001-2005 Comsenz Technology Ltd.
  8.         Last Modified: 2005-3-6 15:38
  9. */

  10. define('CURSCRIPT', 'viewthread');

  11. require_once './include/common.inc.php';
  12. require_once DISCUZ_ROOT.'./include/forum.func.php';
  13. require_once DISCUZ_ROOT.'./include/discuzcode.func.php';

  14. $discuz_action = 3;

  15. $query = $db->query("SELECT t.*, tm.uid AS moduid, tm.username AS modusername, tm.dateline AS moddateline, tm.action AS modaction
  16.         FROM {$tablepre}threads t LEFT JOIN {$tablepre}threadsmod tm ON t.moderated=1 AND tm.tid=t.tid
  17.         WHERE t.tid='$tid' AND t.displayorder>='0'");

  18. if(!$thread = $db->fetch_array($query)) {
  19.         showmessage('thread_nonexistence');
  20. } elseif($thread['moderated']) {
  21.         if($thread['modaction']) {
  22.                 include language('modactions');
  23.                 $thread['moddateline'] = gmdate("$dateformat $timeformat", $thread['moddateline'] + $timeoffset * 3600);
  24.                 $thread['modaction'] = $modactioncode[$thread['modaction']];
  25.         } else {
  26.                 $db->query("UPDATE {$tablepre}threads SET moderated='0' WHERE tid='$tid'", 'UNBUFFERED');
  27.         }
  28. }

  29. $codecount = 0;
  30. $oldtopics = isset($_DCOOKIE['oldtopics']) ? $_DCOOKIE['oldtopics'] : 'D';
  31. if(strpos($oldtopics, 'D'.$tid.'D') === FALSE) {
  32.         $oldtopics = 'D'.$tid.$oldtopics;
  33.         if(strlen($oldtopics) > 3072) {
  34.                 $oldtopics = preg_replace("((D\d+)+D).*$", "\\1", substr($oldtopics, 0, 3072));
  35.         }
  36.         dsetcookie('oldtopics', $oldtopics, 3600);
  37. }

  38. if($lastvisit < $thread['lastpost'] && (!isset($_DCOOKIE['f'.$fid]) || $thread['lastpost'] > $_DCOOKIE['f'.$fid])) {
  39.         dsetcookie('fid'.$fid, $thread['lastpost'], 3600);
  40. }

  41. $navigation = "&raquo; <a href="forumdisplay.php?fid=$fid".($extra ? '&'.preg_replace("/^(&)*/", '', $extra) : '')."">$forum[name]</a> &raquo; $thread[subject]";
  42. $navtitle = ' - '.strip_tags($forum['name']).' - '.$thread['subject'];
  43. if($forum['type'] == 'sub') {
  44.         $query = $db->query("SELECT fid, name FROM {$tablepre}forums WHERE fid='$forum[fup]'");
  45.         $fup = $db->fetch_array($query);
  46.         $navigation = "&raquo; <a href="forumdisplay.php?fid=$fup[fid]">$fup[name]</a> $navigation";
  47.         $navtitle = ' - '.strip_tags($fup['name']).$navtitle;
  48. }

  49. if($thread['typeid'] && isset($forum['threadtypes']['types'][$thread['typeid']])) {
  50.         $thread['subject'] = ($forum['threadtypes']['listable'] ? '<a href="forumdisplay.php?fid='.$fid.'&filter=type&typeid='.$thread['typeid'].'">['.$forum['threadtypes']['types'][$thread['typeid']].']</a>' : '['.$forum['threadtypes']['types'][$thread['typeid']].']').' '.$thread['subject'];
  51. }

  52. if(empty($forum['allowview'])) {
  53.         if(!$forum['viewperm'] && !$readaccess) {
  54.                 showmessage('group_nopermission', NULL, 'NOPERM');
  55.         } elseif($forum['viewperm'] && !forumperm($forum['viewperm'])) {
  56.                 showmessage('forum_nopermission', NULL, 'NOPERM');
  57.         }
  58. }

  59. if($thread['readperm'] && $thread['readperm'] > $readaccess && !$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {
  60.         showmessage('thread_nopermission', NULL, 'NOPERM');
  61. }

  62. if($thread['price'] > 0) {
  63.         if($maxchargespan && $timestamp - $thread['dateline'] >= $maxchargespan * 3600) {
  64.                 $db->query("UPDATE {$tablepre}threads SET price='0' WHERE tid='$tid'");
  65.                 $thread['price'] = 0;
  66.         } else {
  67.                 if(!$discuz_uid) {
  68.                         showmessage('group_nopermission', NULL, 'NOPERM');
  69.                 } elseif(!$forum['ismoderator'] && $thread['authorid'] != $discuz_uid) {
  70.                         $query = $db->query("SELECT tid FROM {$tablepre}paymentlog WHERE tid='$tid' AND uid='$discuz_uid'");
  71.                         if(!$db->num_rows($query)) {
  72.                                 require_once DISCUZ_ROOT.'./include/threadpay.inc.php';
  73.                                 exit();
  74.                         }
  75.                 }               
  76.         }
  77. }

  78. if($forum['password'] && $forum['password'] != $_DCOOKIE['fidpw'.$fid]) {
  79.         header("Location: {$boardurl}forumdisplay.php?fid=$fid&sid=$sid");
  80.         exit();
  81. }

  82. $raterange = $modratelimit && $adminid == 3 && !$forum['ismoderator'] ? array() : $raterange;
  83. //---oytktk--為快速發貼和快速回復增加Smilies表情 for 4.0--start
  84. $smilies = '<center><br><div style="overflow:auto; height:250; width:94%;">';
  85. $moresmilies = 0;
  86. if($smileyinsert && is_array($_DCACHE['smilies_display'])) {
  87.         $smileyinsert = 1;
  88.         $smcols = $smcols ? $smcols : 3;
  89.         foreach($_DCACHE['smilies_display'] as $key => $cccsm) {
  90.                         $smilies .= '<img src="'.SMDIR.'/'.$cccsm['url'].'" border="0" onmouseover="this.style.cursor=\'hand\';" onclick="AddText(\''.htmlspecialchars(addcslashes($cccsm['code'], '\\\'')).'\');">'."\n";
  91.                 }
  92. $smilies .= "</div></center>";
  93. } else {
  94.         $smileyinsert = 0;
  95. }
  96. //---oytktk--為快速發貼和快速回復增加Smilies表情 for 4.0--end

  97. $extra = rawurlencode($extra);
  98. $allowgetattach = !empty($forum['allowgetattach']) || ($allowgetattach && !$forum['getattachperm']) || forumperm($forum['getattachperm']);

  99. //get trade thread status (pos. -1)
  100. $allowposttrade = substr(sprintf('%02b', $forum['allowtrade']), -1, 1);

  101. //get pay to author status (pos. -2)
  102. $allowpaytoauthor = substr(sprintf('%02b', $forum['allowtrade']), -2, 1);

  103. if(empty($action) && $tid) {

  104.         if($discuz_uid && $newpm) {
  105.                 require_once DISCUZ_ROOT.'./include/pmprompt.inc.php';
  106.         }

  107.         $highlightstatus = isset($highlight) && str_replace('+', '', $highlight) ? 1 : 0;
  108.         $maxsigrows = $maxsigrows ? 'style="height: '.$maxsigrows.'em"' : '';

  109.         $page = empty($page) || !ispage($page) ? 1 : $page;
  110.         $start_limit = $numpost = ($page - 1) * $ppp;
  111.         if($start_limit > $thread['replies']) {
  112.                 $start_limit = $numpost = 0;
  113.                 $page = 1;
  114.         }

  115.         $multipage = multi($thread['replies'] + 1, $ppp, $page, "viewthread.php?tid=$tid&extra=$extra".(isset($highlight) ? "&highlight=".rawurlencode($highlight) : ''));

  116.         $polloptions = array();
  117.         if($thread['poll']) {
  118.                 $query = $db->query("SELECT pollopts FROM {$tablepre}polls WHERE tid='$tid'");
  119.                 if(is_array($pollopts = unserialize($db->result($query, 0)))) {
  120.                         foreach($pollopts['options'] as $key=>$option) {
  121.                                 $polloptions[] = array
  122.                                         (
  123.                                         'option'        => dhtmlspecialchars(stripslashes($option[0])),
  124.                                         'votes'                => $option[1],
  125.                                         'width'                => @round($option[1] * 300 / $pollopts['max']) + 2,
  126.                                         //-----------------Voterlist start
  127.         'percent'        => @sprintf ("%01.2f", $option[1] * 100  / $pollopts['total']),
  128.                 'voters'        => $pollopts['voterlist'][$key]
  129. //-----------------Voterlist end
  130.                                         );
  131.                         }

  132.                         $allowvote = $allowvote && (empty($thread['closed']) || $alloweditpoll) && !in_array(($discuz_uid ? $discuz_user : $onlineip), $pollopts['voters']);
  133.                         $optiontype = $pollopts['multiple'] ? 'checkbox' : 'radio';
  134.                 } else {
  135.                         $db->query("UPDATE {$tablepre}threads SET poll='0' WHERE tid='$tid'", 'UNBUFFERED');
  136.                 }
  137.         }

  138.         $extcredits_thread = array();
  139.         foreach($extcredits as $key => $value) {
  140.                 if($value['showinthread']) {
  141.                         $extcredits_thread['extcredits'.$key] = array('title' => $value['title'], 'unit' => $value['unit']);
  142.                 }
  143.         }

  144.         $fieldsadd = '';
  145.         if(is_array($_DCACHE['fields_thread'])) {
  146.                 foreach($_DCACHE['fields_thread'] as $field) {
  147.                         $fieldsadd .= ', mf.field_'.$field['fieldid'];
  148.                 }
  149.         }

  150.         $postlist = $attachtags = array();
  151.         $newpostanchor = $postcount = $attachpids = 0;

  152.         $query = $db->query("SELECT p.*, m.uid, m.username, m.groupid, m.regdate, m.lastactivity, m.posts, m.digestposts, m.oltime,
  153.                 m.pageviews, m.credits, m.extcredits1, m.extcredits2, m.extcredits3, m.extcredits4, m.extcredits5, m.extcredits6,
  154.                 m.extcredits7, m.extcredits8, m.email, m.gender, m.showemail, m.invisible, m.avatarshowid, mf.nickname, mf.site,
  155.                 mf.icq, mf.qq, mf.yahoo, mf.msn, mf.taobao, mf.alipay, mf.location, mf.medals, mf.avatar, mf.avatarwidth,
  156.                 mf.avatarheight, mf.sightml AS signature, mf.customstatus $fieldsadd
  157.                 FROM {$tablepre}posts p
  158.                 LEFT JOIN {$tablepre}members m ON m.uid=p.authorid
  159.                 LEFT JOIN {$tablepre}memberfields mf ON mf.uid=m.uid
  160.                 WHERE p.tid='$tid' AND p.invisible='0' ORDER BY dateline LIMIT $start_limit, $ppp");

  161.         while($post = $db->fetch_array($query)) {

  162.                 if(!$newpostanchor && $post['dateline'] > $lastvisit) {
  163.                         $post['newpostanchor'] = '<a name="newpost"></a>';
  164.                         $newpostanchor = 1;
  165.                 } else {
  166.                         $post['newpostanchor'] = '';
  167.                 }
  168.                 $post['lastpostanchor'] = $numpost == $thread['replies'] ? '<a name="lastpost"></a>' : '';
  169.                 $post['number'] = ++$numpost;
  170.                 $post['count'] = $postcount++;

  171.                 $post['thisbg'] = $thisbg = isset($thisbg) && $thisbg == 'altbg1' ? 'altbg2' : 'altbg1';
  172.                 $post['dateline'] = gmdate("$dateformat $timeformat", $post['dateline'] + $timeoffset * 3600);

  173.                 if($post['username']) {

  174.                         $post['groupid'] = getgroupid($post['authorid'], $_DCACHE['usergroups'][$post['groupid']], $post);
  175.                         $post['readaccess'] = $_DCACHE['usergroups'][$post['groupid']]['readaccess'];
  176.                         if($userstatusby == 1 || $_DCACHE['usergroups'][$post['groupid']]['byrank'] === 0) {
  177.                                 $post['authortitle'] = $_DCACHE['usergroups'][$post['groupid']]['grouptitle'];
  178.                                 $post['stars'] = $_DCACHE['usergroups'][$post['groupid']]['stars'];
  179.                         } elseif($userstatusby == 2) {
  180.                                 foreach($_DCACHE['ranks'] as $rank) {
  181.                                         if($post['posts'] > $rank['postshigher']) {
  182.                                                 $post['authortitle'] = $rank['ranktitle'];
  183.                                                 $post['stars'] = $rank['stars'];
  184.                                                 break;
  185.                                         }
  186.                                 }
  187.                         }

  188.                         if($allowpaytoauthor) {
  189.                                 if(!$post['alipay'] && $post['email'] && $post['showemail']) {
  190.                                         $post['alipay'] = $post['email'];
  191.                                 }
  192.                         } else {
  193.                                 $post['alipay'] = '';
  194.                         }

  195.                         $post['authoras'] = addslashes($post['author']);
  196.                         $post['regdate'] = gmdate($dateformat, $post['regdate'] + $timeoffset * 3600);
  197.                         $post['allowuseblog'] = $_DCACHE['usergroups'][$post['groupid']]['allowuseblog'];

  198.                         if($post['medals']) {
  199.                                 require_once DISCUZ_ROOT.'./forumdata/cache/cache_medals.php';
  200.                                 foreach($post['medals'] = explode("\t", $post['medals']) as $key => $medalid) {
  201.                                         if(isset($_DCACHE['medals'][$medalid])) {
  202.                                                 $post['medals'][$key] = $_DCACHE['medals'][$medalid];
  203.                                         } else {
  204.                                                 unset($post['medals'][$key]);
  205.                                         }
  206.                                 }
  207.                                
  208.                         }

  209.                         $post['avatarshow'] = $avatarshowstatus && ($post['avatarshowid'] || $avatarshowdefault) ? avatarshow($post['avatarshowid'], $post['gender']) : '';
  210.                         if($_DCACHE['usergroups'][$post['groupid']]['groupavatar']) {
  211.                                 $post['avatar'] = '<img src="'.$_DCACHE['usergroups'][$post['groupid']]['groupavatar'].'" border="0">';
  212.                         } elseif($avatarshowstatus != 2 && $_DCACHE['usergroups'][$post['groupid']]['allowavatar'] && $post['avatar']) {
  213.                                 $post['avatar'] = '<img src="'.$post['avatar'].'" width="'.$post['avatarwidth'].'" height="'.$post['avatarheight'].'" border="0">';
  214.                         } else {
  215.                                 $post['avatar'] = '';
  216.                         }

  217.                 } else {

  218.                         if(!$post['authorid']) {
  219.                                 $post['useip'] = substr($post['useip'], 0, strrpos($post['useip'], '.')).'.x';
  220.                         }

  221.                 }

  222.                 $post['attachments'] = array();
  223.                 if($post['attachment'] && $allowgetattach) {
  224.                         $attachpids .= ",$post[pid]";
  225.                         $post['attachment'] = 0;
  226.                         if(preg_match("/\[attach\](\d+)\[\/attach\]/i", $post['message'])) {
  227.                                 $attachtags[] = $post['pid'];
  228.                         }
  229.                 }

  230.                 $forum['allowbbcode'] = $forum['allowbbcode'] ? ($_DCACHE['usergroups'][$post['groupid']]['allowcusbbcode'] ? 2 : 1) : 0;

  231.                 $post['ratings'] = karmaimg($post['rate'], $post['ratetimes']);
  232.                 $post['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], $forum['allowsmilies'], $forum['allowbbcode'], $forum['allowimgcode'], $forum['allowhtml'], ($forum['jammer'] && $post['authorid'] != $discuz_uid ? 1 : 0));
  233.                 $post['signature'] = $post['usesig'] ? $post['signature'] : '';

  234.                 $postlist[$post['pid']] = $post;

  235.         }

  236.         if($attachpids) {

  237.                 $query = $db->query("SELECT aid, pid, dateline, readperm, filename, description, filetype, attachment, filesize, downloads
  238.                                         FROM {$tablepre}attachments WHERE pid IN ($attachpids) ORDER BY aid");

  239.                 if($db->num_rows($query)) {
  240.                         require_once DISCUZ_ROOT.'./include/attachment.func.php';

  241.                         while($attach = $db->fetch_array($query)) {
  242.                                 $extension = strtolower(fileext($attach['filename']));
  243.                                 $attach['dateline'] = gmdate("$dateformat $timeformat", $attach['dateline'] + $timeoffset * 3600);
  244.                                 $attach['attachicon'] = attachtype($extension."\t".$attach['filetype']);
  245.                                 $attach['attachsize'] = sizecount($attach['filesize']);
  246.                                 $attach['attachimg'] = $attachimgpost && in_array($extension, array('jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp')) && (!$attach['readperm'] || $readaccess >= $attach['readperm']) ? 1 : 0;
  247.                                 $postlist[$attach['pid']]['attachments'][$attach['aid']] = $attach;
  248.                         }

  249.                         foreach($attachtags as $pid) {
  250.                                 $postlist[$pid]['message'] = preg_replace("/\[attach\](\d+)\[\/attach\]/ie", "attachtag($pid, \\1)", $postlist[$pid]['message']);
  251.                         }
  252.                 } else {
  253.                         $db->query("UPDATE {$tablepre}posts SET attachment='0' WHERE pid IN ($attachpids)", 'UNBUFFERED');
  254.                 }

  255.         }

  256.         if(empty($postlist)) {
  257.                 showmessage('undefined_action', NULL, 'HALTED');
  258.         }

  259.         $visitedforums = $visitedforums ? visitedforums() : '';
  260.         $forumselect = $forumjump ? forumselect() : '';

  261.         $usesigcheck = $discuz_uid && $sigstatus ? 'checked' : '';
  262.         $allowpostreply = ((!$thread['closed'] && !checkautoclose()) || $forum['ismoderator']) && ((!$forum['replyperm'] && $allowreply) || ($forum['replyperm'] && forumperm($forum['replyperm'])) || $forum['allowreply']);
  263.         $allowpost = (!$forum['postperm'] && $allowpost) || ($forum['postperm'] && forumperm($forum['postperm'])) || $forum['allowpost'];

  264.         if($delayviewcount) {
  265.                 $logfile = DISCUZ_ROOT.'./forumdata/viewcount.log';
  266.                 if(substr($timestamp, -2) == '00') {
  267.                         require_once DISCUZ_ROOT.'./include/misc.func.php';
  268.                         updateviews();
  269.                 }

  270.                 if(@$fp = fopen($logfile, 'a')) {
  271.                         fwrite($fp, "$tid\n");
  272.                         fclose($fp);
  273.                 } elseif($adminid == 1) {
  274.                         showmessage('view_log_invalid');
  275.                 }
  276.         } else {
  277.                 $db->query("UPDATE {$tablepre}threads SET views=views+1 WHERE tid='$tid'", 'UNBUFFERED');
  278.         }

  279.         include template('viewthread');

  280. } elseif($action == 'printable' && $tid) {

  281.         require_once DISCUZ_ROOT.'./include/printable.inc.php';

  282. }

  283. ?>
复制代码

請睇下係乜問題,thx

[ 本帖最后由 hkttsd 于 2006-2-19 07:53 编辑 ]
回复

使用道具 举报

 楼主| 別問我是誰 发表于 2006-2-20 00:45:44 | 显示全部楼层
原帖由 hkttsd 于 2006-2-19 07:52 发表
我的viewthread.php找不到
...

全新安裝 在以下這句開始

修改檔案 ( 修改前請先備份 )
回复

使用道具 举报

折翼の天使♂ 发表于 2006-3-9 16:53:09 | 显示全部楼层
GOOD!!!
回复

使用道具 举报

眼光光 发表于 2006-4-18 00:39:47 | 显示全部楼层
请教,在最后一步

templates/default/viewthread.htm 找


     <!--{if $post['signature']}-->
改為

     <!--{if $post['signature'] && ($post['uid'] == $discuz_uid || $showsignature)}-->


我的viewthread.htm没有
<!--{if $post['signature']}-->,

只有
<!--{if $post['signature'] && !$post['anonymous']}-->

我应该怎么改呢?
回复

使用道具 举报

眼光光 发表于 2006-4-18 00:41:14 | 显示全部楼层
不知道是装了什么插件的问题~
回复

使用道具 举报

 楼主| 別問我是誰 发表于 2006-5-26 10:25:17 | 显示全部楼层
原帖由 眼光光 于 2006-4-18 00:39 发表
请教,在最后一步

templates/default/viewthread.htm 找


     <!--{if $post}-->
改為

     <!--{if $post && ($post == $discuz_uid || $showsignature)}-->


我的viewthr ...
  1. <!--{if $post['signature'] && !$post['anonymous']}-->
复制代码


 4.1 找以上 改為以下

  1. <!--{if $post['signature'] && !$post['anonymous'] && ($post['uid'] == $discuz_uid || $showsignature)}-->
复制代码
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-5-22 23:19 , Processed in 0.842125 second(s), 15 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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