TShopping

 找回密碼
 註冊
搜索
查看: 2833|回復: 1
打印 上一主題 下一主題

【超級美化】AL8 首頁六格顯示 for Discuz 6.0.0(正式版)

  [複製鏈接]
跳轉到指定樓層
1#
發表於 2008-5-19 00:45:27 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
 
Push to Facebook
插件名稱:【超級美化】AL8 首頁六格顯示 for Discuz 6.0.0
適合版本:Discuz 6.0.0
原作者: alan888
出處:http://www.alan888.com/Discuz/vi ... 7&highlight=al8
DZ 5.0補增益版:By djkevin (在AL8首頁4格的個人資料加入個人圖像 For 5.0)
DZ 5.5修改整理:By 范倫鐵諾(修正5.5與5.0不同處並整理)
DZ 5.5超級美化:By 范倫鐵諾(2007.04.02完成)
DZ 6.0修改美化:By 范倫鐵諾(2007.09.30完成)
演示:http://www.k-song.com/index.php
數據庫升級:無
修改模板:1個
修改PHP:8個
加入文件: foruminfo.htm 及圖片(附件1&2)
修改文件:
/index.php
/logging.php
/topicadmin.php
/register.php
/include/newthread.inc.php
/include/newreply.inc.php
/include/counter.inc.php
/include/cache.func.php
/templates/default/discuz.htm

解說:

因為6.0的改動有滿多地方的,所以自身並未急著於第一時間在

官方釋出DZ 6.0正式版時同時間進行升級,直到近日有需多站

長友人詢問DZ 6.0的手動方式修正,加上研究6.0有一段時間後,

這才開始修改,這次與5.5版的修正方式並無太大差異,除了細部

較不同的字串外,對模板也稍微進行了美化(增加部份圖及格線調整)

,最後,也是一樣的原因,這是由AL8衍生的六格,短期內只會分享

在AL8,希望各位會喜歡這插件。題外話一下,目前正整合更新的首頁

N格,會做更大幅度的修正,預計10月底釋出,有相關建議的歡迎指教

提出。

                         By  【K歌黨】系統顧問暨管理顧問@范倫鐵諾

注意:

『1』此版安裝程繁雜,安裝前請記得備份,初學者需再詳細確認步驟。

『2』修正之前熱門精華無法自動更新問題。

『3』盼站長注意各論壇編碼,勿單純以筆記本做編碼存檔動作,修正過的請善用ConvertZ軟體轉碼後再上傳。

『4』此版本小弟自我測試無錯誤,若有因為過程上造成使用者的問題或其它損害,小弟並不負責任何責任

『5』歡迎指教。

說明:

1. 修改 include/cache.func.php
修改完成此文件後請即時到後台→更新緩存
  1. 'medals'        => array('medals'),
複製代碼
更換為
  1.   'medals'        => array('medals'),
  2.                 'newtopic'      => array('newtopic'),
  3.                 'newreply'      => array('newreply'),
  4.                 'topdigest'     => array('topdigest'),
複製代碼
再找
  1. case 'medals':
  2.                         $table = 'medals';
  3.                         $cols = 'medalid, name, image';
  4.                         $c;
  5.                         break;
複製代碼
在下面加上 (注意填妥"填上不需要顯示回帖區域的 fid 編號, 以逗號作分格, 最後一個不用加上逗號")
填上不需要顯示帖子區域
由於使用快取檔型式, 故某些私密區不能判斷會員權限來顯示發帖及回帖, 所以要先修改及取代下紅字部份 "填上不需要顯示帖子區域的 fid 編號, 以逗號作分格, 最後一個不用加上逗號" 部份, 例如希望不顯示 fid 1,3,5 便填上 "$fids="1,3,5";"
如果希望全部顯示者, 請將下面三段的 NOT IN ($fids) (藍色字顯示部份)刪除, 否則會出現數據錯誤的顯示
  1.                 case newtopic:
  2.                         $table = 'threads t';
  3.                         $cols = "t.tid, t.typeid, t.subject, t.author, t.dateline, t.views, t.replies, t.lastpost, t.lastposter, t.highlight, f.name, tt.name AS idname";
  4.                         $fids="填上不需要顯示回帖區域的 fid 編號, 以逗號作分格, 最後一個不用加上逗號";
  5.                         $c;
  6.                         break;

  7.                 case newreply:
  8.                         $table = 'threads t';
  9.                         $cols = "t.tid, t.typeid, t.subject, t.author, t.dateline, t.views, t.replies, t.lastpost, t.lastposter, t.highlight, f.name, tt.name AS idname";
  10.                         $fids="填上不需要顯示回帖區域的 fid 編號, 以逗號作分格, 最後一個不用加上逗號";
  11.                         $c;
  12.                         break;

  13.                 case topdigest:
  14.                         $table = 'threads t';
  15.                         $cols = "t.tid, t.typeid, t.subject, t.author, t.dateline, t.views, t.replies, t.lastpost, t.lastposter, t.highlight, f.name, tt.name AS idname";
  16.                         $fids="填上不需要顯示回帖區域的 fid 編號, 以逗號作分格, 最後一個不用加上逗號";
  17.                         $c;
  18.                         break;

  19.                  case todayvisit:
  20.                         $table = 'members';
  21.                         $cols = "COUNT(*)";
  22.                         $datecut = time() - (3600 * 24);
  23.                         $c;
  24.                         break;
複製代碼
  1. $GLOBALS['totalmembers'] = $data['totalmembers'] = $db->result($query, 0);
複製代碼
在下面加上
  1.                         $datecut = time() - (3600 * 24);
  2.                         $query = $db->query("SELECT COUNT(*) FROM {$tablepre}members WHERE regdate>='$datecut'");
  3.                         $GLOBALS['todaynewmems'] = $data['todaynewmems'] = $db->result($query, 0);
複製代碼
  1. case 'forumlinks':
  2.                         global $forumlinkstatus;
複製代碼
上面加上
  1.                 case 'newreply':
  2.                 $hack_cut_str = 36;
  3.                 $new_reply_threadlist = array();
  4.                 $rthread = array();
  5.                 $colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
  6.                 while($rthread = $db->fetch_array($query)){
  7.                 $rthread['forumname'] = $rthread['name'];
  8.                 $rthread['view_subject'] = $rthread[idname] ? cutstr( "$rthread[idname] $rthread[subject]",$hack_cut_str) : cutstr($rthread['subject'],$hack_cut_str);
  9.                 $rthread['subject'] = cutstr($rthread['subject'],46);
  10.                 $rthread['date']= gmdate('Y-n-j G:i', $rthread['dateline'] + 8 * 3600);
  11.                 $rthread['lastreplytime']= gmdate('Y-n-j G:i', $rthread['lastpost'] + 8 * 3600);
  12.                 if($rthread['highlight']) {
  13.                 $string = sprintf('%02d', $rthread['highlight']);
  14.                 $stylestr = sprintf('%03b', $string[0]);
  15.                 $rthread['highlight'] = 'style="';
  16.                 $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  17.                 $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  18.                 $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  19.                 $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  20.                 $rthread['highlight'] .= '"';
  21.                 } else {
  22.                 $rthread['highlight'] = '';
  23.                 }
  24.                 $new_reply_threadlist = "<a href=\"redirect.php?tid=$rthread[tid]&goto=lastpost#lastpost\" title=\"論壇rthread[forumname]\r\n標題rthread[subject]\r\n作者rthread[author]\r\n發表時間rthread[date]\r\n瀏覽次數rthread[views] 次\r\n回覆rthread[replies] 次\r\n最後回覆rthread[lastreplytime]\r\n最後發表rthread[lastposter]\" $rthread[highlight]>$rthread[view_subject]</a>

  25. ";
  26.                 $data[] = array('content' => $new_reply_threadlist);
  27.                         }
  28.                 break;
  29.                 case 'newtopic':
  30.                 $hack_cut_str = 36;
  31.                 $new_post_threadlist = array();
  32.                 $nthread = array();
  33.                 $colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
  34.                 while($nthread = $db->fetch_array($query)){
  35.                 $nthread['forumname'] = $nthread['name'];
  36.                 $nthread['view_subject'] = $nthread[idname] ? cutstr( "$nthread[idname] $nthread[subject]",$hack_cut_str) : cutstr($nthread['subject'],$hack_cut_str);
  37.                 $nthread['subject'] = cutstr($nthread['subject'],46);
  38.                 $nthread['date']= gmdate('Y-n-j G:i', $nthread['dateline'] + 8 * 3600);
  39.                 $nthread['lastreplytime']= gmdate('Y-n-j G:i', $nthread[lastpost] + 8 * 3600);
  40.                 if($nthread['highlight']) {
  41.                 $string = sprintf('%02d', $nthread['highlight']);
  42.                 $stylestr = sprintf('%03b', $string[0]);
  43.                 $nthread['highlight'] = 'style="';
  44.                 $nthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  45.                 $nthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  46.                 $nthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  47.                 $nthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  48.                 $nthread['highlight'] .= '"';
  49.                 } else {
  50.                 $nthread['highlight'] = '';
  51.                 }
  52.         $new_post_threadlist = $nthread[replies] ? "<a href=\"redirect.php?tid=$nthread[tid]&goto=lastpost#lastpost\" title=\"論壇nthread[forumname]\r\n標題nthread[subject]\r\n作者nthread[author]\r\n發表時間nthread[date]\r\n瀏覽次數nthread[views] 次 \r\n回覆nthread[replies] 次\r\n最後回覆nthread[lastreplytime]\r\n最後發表nthread[lastposter]\" $nthread[highlight] >$nthread[view_subject]</a>

  53. " : "<a href=\"redirect.php?tid=$nthread[tid]&goto=lastpost#lastpost\" title=\"論壇nthread[forumname]\r\n標題nthread[subject]\r\n作者nthread[author]\r\n發表時間nthread[date]\r\n瀏覽次數nthread[views] 次\r\n回覆: 暫時沒有回覆\" $nthread[highlight] >$nthread[view_subject]</a>

  54. ";
  55.                 $data[] = array('content' => $new_post_threadlist);
  56.                         }
  57.                 break;
  58. case 'topdigest':
  59.                 $hack_cut_str = 75;
  60.                 $top_digest_threadlist = array();
  61.                 $rthread = array();
  62.                 $colorarray = array('', 'red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple', 'gray');
  63.                 while($rthread = $db->fetch_array($query)){
  64.                 $rthread['forumname'] = $rthread['name'];
  65.                 $rthread['view_subject'] = $rthread[idname] ? cutstr( "$rthread[idname] $rthread[subject]",$hack_cut_str) : cutstr($rthread['subject'],$hack_cut_str);
  66.                 $rthread['subject'] = cutstr($rthread['subject'],46);
  67.                 $rthread['date']= gmdate('Y-n-j G:i', $rthread['dateline'] + 8 * 3600);
  68.                 $rthread['lastreplytime']= gmdate('Y-n-j G:i', $rthread['lastpost'] + 8 * 3600);
  69.                 if($rthread['highlight']) {
  70.                 $string = sprintf('%02d', $rthread['highlight']);
  71.                 $stylestr = sprintf('%03b', $string[0]);
  72.                 $rthread['highlight'] = 'style="';
  73.                 $rthread['highlight'] .= $stylestr[0] ? 'font-weight: bold;' : '';
  74.                 $rthread['highlight'] .= $stylestr[1] ? 'font-style: italic;' : '';
  75.                 $rthread['highlight'] .= $stylestr[2] ? 'text-decoration: underline;' : '';
  76.                 $rthread['highlight'] .= $string[1] ? 'color: '.$colorarray[$string[1]] : '';
  77.                 $rthread['highlight'] .= '"';
  78.                 } else {
  79.                 $rthread['highlight'] = '';
  80.                 }
  81.                 $top_digest_threadlist = "<a href=\"redirect.php?tid=$rthread[tid]&goto=lastpost#lastpost\" title=\"論壇rthread[forumname]\r\n標題rthread[subject]\r\n作者rthread[author]\r\n發表時間rthread[date]\r\n瀏覽次數rthread[views] 次\r\n回覆rthread[replies] 次\r\n最後回覆rthread[lastreplytime]\r\n最後發表rthread[lastposter]\" $rthread[highlight]>$rthread[view_subject]</a>

  82. ";
  83.                 $data[] = array('content' => $top_digest_threadlist);
  84.                         }
  85.                 break;
複製代碼
2. 修改 include/newthread.inc.php
  1. showmessage('post_newthread_succeed', "viewthread.php?tid=$tid&extra=$extra".(!empty($frombbs) ? "&frombbs=$frombbs" : ''));
複製代碼
在上面加上
  1. require DISCUZ_ROOT.'./include/cache.func.php';
  2.         updatecache('newtopic');
複製代碼
3. 修改 include/newreply.inc.php
  1. showmessage($replymessage, "viewthread.php?tid=$tid&pid=$pid&page=".(@ceil(($thread['special'] ? $thread['replies'] + 1 thread['replies'] + 2) / $ppp))."&extra=$extra#pid$pid");
複製代碼
在上面加上
  1. require DISCUZ_ROOT.'./include/cache.func.php';
  2. updatecache(array('newreply', 'newtopic'));
複製代碼
4. 修改 include/counter.inc.php
  1. if(!$sessionexists) {
  2.         if(strpos($visitor['agent'], 'Netscape')) {
  3.                 $visitor['browser'] = 'Netscape';
  4.         } elseif(strpos($visitor['agent'], 'Lynx')) {
  5.                 $visitor['browser'] = 'Lynx';
  6.         } elseif(strpos($visitor['agent'], 'Opera')) {
  7.                 $visitor['browser'] = 'Opera';
  8.         } elseif(strpos($visitor['agent'], 'Konqueror')) {
  9.                 $visitor['browser'] = 'Konqueror';
  10.         } elseif(strpos($visitor['agent'], 'MSIE')) {
  11.                 $visitor['browser'] = 'MSIE';
  12.         } elseif(substr($visitor['agent'], 0, 7) == 'Mozilla') {
  13.                 $visitor['browser'] = 'Mozilla';
  14.         } else {
  15.                 $visitor['browser'] = 'Other';
  16.         }

  17.         if(strpos($visitor['agent'], 'Win')) {
  18.                 $visitor['os'] = 'Windows';
  19.         } elseif(strpos($visitor['agent'], 'Mac')) {
  20.                 $visitor['os'] = 'Mac';
  21.         } elseif(strpos($visitor['agent'], 'Linux')) {
  22.                 $visitor['os'] = 'Linux';
  23.         } elseif(strpos($visitor['agent'], 'FreeBSD')) {
  24.                 $visitor['os'] = 'FreeBSD';
  25.         } elseif(strpos($visitor['agent'], 'SunOS')) {
  26.                 $visitor['os'] = 'SunOS';
  27.         } elseif(strpos($visitor['agent'], 'OS/2')) {
  28.                 $visitor['os'] = 'OS/2';
  29.         } elseif(strpos($visitor['agent'], 'AIX')) {
  30.                 $visitor['os'] = 'AIX';
  31.         } elseif(preg_match("/(Bot|Crawl|Spider)/i", $visitor['agent'])) {
  32.                 $visitor['os'] = 'Spiders';
  33.         } else {
  34.                 $visitor['os'] = 'Other';
複製代碼
更換為
  1. if(!$sessionexists || $discuz_uid) {
  2. if(strpos($visitor['agent'], "MSIE 7.0")) {
  3.                 $visitor_browser = "Internet Explorer 7.0";
  4.                 $visitor['browser'] = 'MSIE';
  5.         } elseif(strpos($visitor['agent'], "MSIE 6.0")) {
  6.                 $visitor_browser = "Internet Explorer 6.0";
  7.                 $visitor['browser'] = 'MSIE';
  8.         } elseif(strpos($visitor['agent'], "MSIE 5.5")) {
  9.                 $visitor_browser = "Internet Explorer 5.5";
  10.                 $visitor['browser'] = 'MSIE';
  11.         } elseif(strpos($visitor['agent'], "MSIE 5.0")) {
  12.                 $visitor_browser = "Internet Explorer 5.0";
  13.                 $visitor['browser'] = 'MSIE';
  14.         } elseif(strpos($visitor['agent'], "MSIE 4.01")) {
  15.                 $visitor_browser = "Internet Explorer 4.01";
  16.                 $visitor['browser'] = 'MSIE';
  17.         } elseif(strpos($visitor['agent'], "Netscape")) {
  18.                 $visitor_browser = "Netscape";
  19.                 $visitor['browser'] = 'Netscape';
  20.         } elseif(strpos($visitor['agent'], "Lynx")) {
  21.                 $visitor_browser = "Lynx";
  22.                 $visitor['browser'] = 'Lynx';
  23.         } elseif(strpos($visitor['agent'], "Opera")) {
  24.                 $visitor_browser = "Opera";
  25.                 $visitor['browser'] = 'Opera';
  26.         } elseif(strpos($visitor['agent'], "Konqueror")) {
  27.                 $visitor_browser = "Konqueror";
  28.                 $visitor['browser'] = 'Konqueror';
  29.         } elseif(strpos($visitor['agent'], "Firefox")) {
  30.                 $visitor_browser = "Firefox";
  31.                 $visitor['browser'] = 'Mozilla';
  32.         } elseif(strpos($visitor['agent'], "Mozilla/5.0")) {
  33.                 $visitor_browser = "Mozilla";
  34.                 $visitor['browser'] = 'Mozilla';
  35.         } else {
  36.                 $visitor_browser = "其它";
  37.                 $visitor['browser'] = 'Other';
  38.         }
  39.         if(strpos($visitor['agent'], "NT 5.1")) {
  40.         if(strpos($visitor['agent'], "SV1")){
  41.                 $visitor_os = "Windows XP SP2";
  42.                 $visitor['os'] = 'Windows';
  43.         }else{
  44.                 $visitor_os = "Windows XP";
  45.                 $visitor['os'] = 'Windows';
  46.         }
  47.         }elseif(strpos($visitor['agent'], "NT 6.0")) {
  48.                 $visitor_os = "Win Vista";
  49.                 $visitor['os'] = 'Windows';
  50.         }elseif(strpos($visitor['agent'], "NT 5.2")) {
  51.                 $visitor_os = "Windows Server 2003";
  52.                 $visitor['os'] = 'Windows';
  53.         }elseif(strpos($visitor['agent'], "NT 5")) {
  54.                 $visitor_os = "Windows 2000";
  55.                 $visitor['os'] = 'Windows';
  56.         } elseif(strpos($visitor['agent'], "4.9")) {
  57.                 $visitor_os = "Windows ME";
  58.                 $visitor['os'] = 'Windows';
  59.         } elseif(strpos($visitor['agent'], "NT 4")) {
  60.                 $visitor_os = "Windows NT 4.0";
  61.                 $visitor['os'] = 'Windows';
  62.         } elseif(strpos($visitor['agent'], "98")) {
  63.                 $visitor_os = "Windows 98";
  64.                 $visitor['os'] = 'Windows';
  65.         } elseif(strpos($visitor['agent'], "95")) {
  66.                 $visitor_os = "Windows 95";
  67.                 $visitor['os'] = 'Windows';
  68.         } elseif(strpos($visitor['agent'], "Mac")) {
  69.                 $visitor_os = "Mac";
  70.                 $visitor['os'] = 'Mac';
  71.         } elseif(strpos($visitor['agent'], "Linux")) {
  72.                 $visitor_os = "Linux";
  73.                 $visitor['os'] = 'Linux';
  74.         } elseif(strpos($visitor['agent'], "Unix")) {
  75.                 $visitor_os = "Unix";
  76.                 $visitor['os'] = 'Other';
  77.         } elseif(strpos($visitor['agent'], "FreeBSD")) {
  78.                 $visitor_os = "FreeBSD";
  79.                 $visitor['os'] = 'FreeBSD';
  80.         } elseif(strpos($visitor['agent'], "SunOS")) {
  81.                 $visitor_os = "SunOS";
  82.                 $visitor['os'] = 'SunOS';
  83.         } elseif(strpos($visitor['agent'], "OS/2")) {
  84.                 $visitor_os = "OS/2";
  85.                 $visitor['os'] = 'OS/2';
  86.         }elseif(strpos($visitor['agent'], "AIX")) {
  87.                 $visitor_os = "AIX";
  88.                 $visitor['os'] = 'AIX';
  89.         } elseif(preg_match("/(Bot|Crawl|Spider)/i", $visitor['agent'])) {
  90.                 $visitor_os = "Spiders";
  91.                 $visitor['os'] = 'Spiders';
  92.         } else {
  93.                 $visitor_os = "其他";
  94.                 $visitor['os'] = 'Other';
  95.         }
複製代碼
5. 修改 topicadmin.php
(第一段約第 15 行那句)
  1. require_once DISCUZ_ROOT.'./include/misc.func.php';
複製代碼
在下面加上
  1. require_once DISCUZ_ROOT.'./include/cache.func.php';
複製代碼
  1. showmessage((isset($resultarray['message']) ? $resultarray['message'] : 'admin_succeed'), $resultarray['redirect']);
複製代碼
在上面加上
  1. updatecache(array('newreply', 'newtopic', 'topdigest'));
複製代碼
6. 修改 logging.php
  1. $sessionexists = 0;
複製代碼
在下面加上
  1. require_once DISCUZ_ROOT.'./include/cache.func.php';
  2.                                 updatecache('todayvisit');
複製代碼
7. 修改 index.php
  1. $rsshead = $rssstatus ? ('<link rel="alternate" type="application/rss+xml" title="'.$bbname.'" href="'.$boardurl.'rss.php?auth='.$rssauth."\" />\n") : '';
複製代碼
下方加入
  1. //------------圖像 by keven
  2.         $member_query = $db->query("SELECT * FROM {$tablepre}members m, {$tablepre}memberfields mf
  3.                 WHERE m.uid='$discuz_uid' AND mf.uid='$discuz_uid'");
  4.         $member = $db->fetch_array($member_query);
  5.         $member['lastvisit'] = gmdate("$dateformat $timeformat", $member['lastvisit'] + ($timeoffset * 3600));
  6.         $member['usernameenc'] = rawurlencode($member['username']);
  7.         $allowfriendcheck = array($member['allowfriend'] => 'checked');
  8.         $avatypecheck = array($member['avatype'] => 'checked');
  9. if(!$member[avatar]){
  10.         $member[avatar]="images/avatars/noavatar.gif";
  11. }
  12. //-------------圖像 END
複製代碼
  1. $catlist = $forumlist = $sublist = $pmlist = array();
複製代碼
在上面加上
  1. //-----------hack AL8 Info
  2. if(!$statstatus && $discuz_uid){
  3. require_once DISCUZ_ROOT.'./include/counter.inc.php';
  4. }
  5. require_once DISCUZ_ROOT.'./include/misc.func.php';
  6. $mem_home = convertip($onlineip, $datadir = "./");
  7. @include './forumdata/cache/cache_newtopic.php';
  8. @include './forumdata/cache/cache_newreply.php';
  9. @include './forumdata/cache/cache_topdigest.php';
  10. //-----------hack AL8 Info End
複製代碼
  1. 'forumlinks', 'birthdays', 'supe_updateusers'
複製代碼
在後面插入
  1. , 'foruminfo'
複製代碼
9. 修改 register.php
  1. $styleid = $styleid ? $styleid _DCACHE['settings']['styleid'];
複製代碼
在下面加上
  1. $datecut = time() - (3600 * 24);
  2. $query = $db->query("SELECT COUNT(*) FROM {$tablepre}members WHERE regdate>='$datecut'");
  3. $todaynewmems = $db->result($query, 0);
複製代碼
  1. updatesettings();
複製代碼
在上面加上
  1. $_DCACHE['settings']['todaynewmems'] = $todaynewmems;
複製代碼
8. 修改 discuz 模板
  1. <table summary="HeadBox" class="portalbox" cellpadding="0" cellspacing="1">
  2.         <tr>
  3.         <!--{if $supeitemsstatus || $hottagstatus}-->
複製代碼
上面加
  1. {template foruminfo}
複製代碼

 

臉書網友討論

本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?註冊

x
2#
發表於 2011-7-4 01:05:01 | 只看該作者
幫你頂,人還是厚道點好  

版主招募中

*滑块验证:
您需要登錄後才可以回帖 登錄 | 註冊 |

本版積分規則



Archiver|手機版|小黑屋|免責聲明|TShopping

GMT+8, 2024-4-25 13:23 , Processed in 0.086103 second(s), 19 queries .

本論壇言論純屬發表者個人意見,與 TShopping綜合論壇 立場無關 如有意見侵犯了您的權益 請寫信聯絡我們。

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回復 返回頂部 返回列表