AL8 Forum
   登錄註冊幫助


標題: [D5.0] 配合 DZ 積分基制 [sell=8] 出售內容 + 終止出售 插件
 別問我是誰
 0005547
Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9
點擊查看 別問我是誰 的詳細資料

頭銜: Honorary Admin

帖子: 9332

精華: 0

積分: 126625 點

現金: 648 元

存款: 47195 元

閱讀權限: 120

註冊: 2004-8-15

狀態: 離線
 
發表於 2006-9-6 05:11  資料  個人空間  短消息  加為好友 
配合 DZ 積分基制 [sell=8] 出售內容 + 終止出售 插件

http://www.alan888.com/Discuz/viewthread.php?tid=54567

http://www.alan888.com/Discuz/viewthread.php?tid=55112

 這插件集合了以上兩篇 整理一次過可修改

============================================

=============== 程序說明 ==================

 將現時的出售 需要付費才可進入查看主題

 改為以往使用的 可進入觀看帖子

 [sell=??] 出售內容 [/sell] 付費後查看內容

 將出售的內容隱藏 需付費後才可查看

 使用方法有兩個  1. 填入出售的價格  2. 使用代碼

 只需選其中一項 程式會完成整段出售代碼

============================================

 就算內容用了 [sell=??] 出售內容 [/sell] 這代碼

 程式亦可作檢查 是否超出你用戶組的最高出售價格

 若是超出 程式會將這價格改為您用戶組的最高出售價格

============================================

 除了 misc.php 加入一次數據庫查詢檢查是否己付費

 其它全部檔案 絕對沒有增加數據庫查詢

 並在 include/newreply.inc.php 這文件

 在有出售的帖子內 並減少一次數據庫查詢

 每篇主題內只可有一次出售 再多也是無效

 就等於在同一帖放置多個 [hide] 一樣道理

 回覆不可出售 因為這是修改版插件 不是新插件

============================================

 有權使用強制退款_可用_終止出售
 若不想強制退款 又可查看付費名單 又不想主題繼續出售

 可以選用 管理選項 終止出售 將出售改為終止

 就算主題作者進入編輯帖子 亦不可改回可以出售

============================================

 無需升級數據庫 只需修改檔案

 ( 修改前請先備份以下檔案 )
 ( 用後有什麼問題 可將備份檔案上傳恢復正常 )

 修改前注意 你要有修改過 hide 對附件隱藏 (在這主題最底)

============= 修改文件 =====================

 viewthread.php
 misc.php
 post.php
 blog.php
 topicadmin.php

 include/editpost.inc.php
 include/newreply.inc.php
 include/newthread.inc.php
 include/printable.inc.php
 include/threadpay.inc.php
 include/discuzcode.func.php

 templates/default/templates.lang.php
 templates/default/post_editpost.htm
 templates/default/topicadmin_refund.htm
 templates/default/viewthread_printable.htm
 templates/default/viewthread.htm      ( 所有風格有這份檔 viewthread.htm 亦要修改 )

 ( 修改上傳完成 緊記 更新緩存 )

============================================

 請下載說明文件安裝

 安裝前你需要修改以下


============================================

hide 對附件隱藏

include/discuzcode.func.php


function creditshide($creditsrequire, $message) {
        global $language;
        include_once language('misc');

        if($GLOBALS['credits'] < $creditsrequire && !$GLOBALS['forum']['ismoderator']) {
                return '<b>'.eval("return \"$language[post_hide_credits_hidden]\";").'</b>';
        } else {
                return '<b>'.eval("return \"$language[post_hide_credits]\";").'</b><br>'.
                        '==============================<br><br>'.
                        str_replace('\\"', '"', $message).'<br><br>'.
                        '==============================';
        }
}


改成

function creditshide($creditsrequire, $message) {
        global $language, $ishide;
        include_once language('misc');

        if($GLOBALS['credits'] < $creditsrequire && !$GLOBALS['forum']['ismoderator']) {
                $ishide = TRUE;
                return '<b>'.eval("return \"$language[post_hide_credits_hidden]\";").'</b>';
        } else {
                $ishide = FALSE;
                return '<b>'.eval("return \"$language[post_hide_credits]\";").'</b><br>'.
                        '==============================<br><br>'.
                        str_replace('\\"', '"', $message).'<br><br>'.
                        '==============================';
        }
}



第二步找到


global $discuzcodes, $credits, $tid, $discuz_uid, $highlight, $maxsmilies, $db, $tablepre;


改成

global $discuzcodes, $credits, $tid, $discuz_uid, $highlight, $maxsmilies, $db, $tablepre, $ishide;


第三步找到

if($GLOBALS['forum']['ismoderator'] || $db->result($query, 0)) {
        $message = preg_replace("/\[hide\]\s*(.+?)\s*\[\/hide\]/is",
        '<span class="bold">'.$language['post_hide_reply'].'</span><br>'.
        '==============================<br><br>'.
        '\\1<br><br>'.
        '==============================',
        $message);
} else {
        $message = preg_replace("/\[hide\](.+?)\[\/hide\]/is", '<b>'.$language['post_hide_reply_hidden'].'</b>', $message);
}


改成

if($GLOBALS['forum']['ismoderator'] || $db->result($query, 0)) {
        $message = preg_replace("/\[hide\]\s*(.+?)\s*\[\/hide\]/is",
        '<span class="bold">'.$language['post_hide_reply'].'</span><br>'.
        '==============================<br><br>'.
        '\\1<br><br>'.
        '==============================',
        $message);
        $ishide = FALSE;
} else {
        $message = preg_replace("/\[hide\](.+?)\[\/hide\]/is", '<b>'.$language['post_hide_reply_hidden'].'</b>', $message);
        $ishide = TRUE;
}


第二部分修改templates/default/viewthread.htm模板文件

找到

<!--{if $post['attachment']}-->
        <br><br><img src="images/attachicons/common.gif"> {lang attachment}: <i>{lang attach_nopermission}</i>
<!--{else}-->
        <!--{loop $post['attachments'] $attach}-->
                <br><br>$attach[attachicon]
                <!--{if $attach['attachimg']}-->
                        <a href="member.php?action=credits&view=getattach" title="{lang credits_policy_view}" target="_blank">{lang attach_img}</a>:
                <!--{if $attach['readperm']}-->, {lang readperm} $attach[readperm]<!--{/if}-->
                <!--{if $attach['description']}-->[{$attach[description]}]<!--{/if}--> <a href="attachment.php?aid=$attach[aid]" target="_blank" class="bold">$attach[filename]</a> ($attach[dateline], $attach[attachsize])<br><br>
                <!--{if $attachrefcheck}-->
                        <img src="attachment.php?aid=$attach[aid]&noupdate=yes" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='{lang image_open_zoom}';}" onmouseover="if(this.resized) this.style.cursor='hand';" onclick="if(!this.resized) {return false;} else {window.open('attachment.php?aid=$attach[aid]');}" onmousewheel="return imgzoom(this);">
                <!--{else}-->
                        <img src="$attachurl/$attach[attachment]" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='{lang image_open_zoom}';}" onmouseover="if(this.resized) this.style.cursor='hand';" onclick="if(!this.resized) {return false;} else {window.open('$attachurl/$attach[attachment]');}" onmousewheel="return imgzoom(this);">
                <!--{/if}-->
                <!--{else}-->
                        <a href="member.php?action=credits&view=getattach" title="{lang credits_policy_view}" target="_blank">{lang attachment}</a>:
                        <!--{if $attach['description']}-->[{$attach[description]}]<!--{/if}--> <a href="attachment.php?aid=$attach[aid]" target="_blank" class="bold">$attach[filename]</a> ($attach[dateline], $attach[attachsize])<br>
                        <span class="smalltxt">{lang attach_download_count} $attach[downloads]
                        <!--{if $attach['readperm']}-->, {lang readperm} $attach[readperm]<!--{/if}--></span><br>
                <!--{/if}-->
        <!--{/loop}-->
<!--{/if}-->


改成

<!--{if $ishide && $post['attachments'] && !$post['attachment']}-->
                        <br><br><img src="images/attachicons/common.gif"> {lang attachment}: <i>{lang attach_nopermission}</i>
                <!--{else}-->
                <!--{if $post['attachment']}-->
                        <br><br><img src="images/attachicons/common.gif"> {lang attachment}: <i>{lang attach_nopermission}</i>
                <!--{else}-->
                        <!--{loop $post['attachments'] $attach}-->
                                <br><br>$attach[attachicon]
                                <!--{if $attach['attachimg']}-->
                                        <a href="member.php?action=credits&view=getattach" title="{lang credits_policy_view}" target="_blank">{lang attach_img}</a>:
                                        <!--{if $attach['readperm']}-->, {lang readperm} $attach[readperm]<!--{/if}-->
                                        <!--{if $attach['description']}-->[{$attach[description]}]<!--{/if}--> <a href="attachment.php?aid=$attach[aid]" target="_blank" class="bold">$attach[filename]</a> ($attach[dateline], $attach[attachsize])<br><br>
                                        <!--{if $attachrefcheck}-->
                                                <img src="attachment.php?aid=$attach[aid]&noupdate=yes" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='{lang image_open_zoom}';}" onmouseover="if(this.resized) this.style.cursor='hand';" onclick="if(!this.resized) {return false;} else {window.open('attachment.php?aid=$attach[aid]');}" onmousewheel="return imgzoom(this);">
                                        <!--{else}-->
                                                <img src="$attachurl/$attach[attachment]" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='{lang image_open_zoom}';}" onmouseover="if(this.resized) this.style.cursor='hand';" onclick="if(!this.resized) {return false;} else {window.open('$attachurl/$attach[attachment]');}" onmousewheel="return imgzoom(this);">
                                        <!--{/if}-->
                                <!--{else}-->
                                        <a href="member.php?action=credits&view=getattach" title="{lang credits_policy_view}" target="_blank">{lang attachment}</a>:
                                        <!--{if $attach['description']}-->[{$attach[description]}]<!--{/if}--> <a href="attachment.php?aid=$attach[aid]" target="_blank" class="bold">$attach[filename]</a> ($attach[dateline], $attach[attachsize])<br>
                                        <span class="smalltxt">{lang attach_download_count} $attach[downloads]
                                        <!--{if $attach['readperm']}-->, {lang readperm} $attach[readperm]<!--{/if}--></span><br>
                                <!--{/if}-->
                        <!--{/loop}-->
                <!--{/if}-->
<!--{/if}-->


[ 本帖最後由 別問我是誰 於 2006-9-21 19:57 編輯 ]



 附件: 您所在的用戶組無法下載或查看附件



小莫小於水滴 自成大海汪洋
細莫細於沙粒 自成大地四方
勤檢就是美德 儲蓄可以致富
莫等閒 白了少年頭 空悲切
 AL8 Forum © All rights reserved.
頂部
 krgordonho
 0018767
Rank: 3Rank: 3Rank: 3
點擊查看 krgordonho 的詳細資料

頭銜: Conqueror

帖子: 223

精華: 0

積分: 2230 點

現金: 90 元

存款: 4 元

閱讀權限: 20

註冊: 2005-4-4

來自: 香港

狀態: 離線
 
發表於 2006-9-6 05:22  資料  個人空間  主頁 短消息  加為好友  添加 krgordonho 為MSN好友 通過MSN和 krgordonho 交談 ICQ 狀態
正, 方便得多, 裝埋先訓, 感謝嚕 ~




 AL8 Forum © All rights reserved.
頂部
 friri
 0026436
Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7Rank: 7

頭銜: Moderator

暱稱: Secret

帖子: 3638

精華: 0

積分: 21847 點

現金: 96 元

存款: 5212 元

閱讀權限: 100

註冊: 2005-7-16

來自: 香港

狀態: 離線
 
發表於 2006-9-6 18:10  資料  個人空間  短消息  加為好友 
好!D4一直用開你的[sell]代碼!升為D5,就正在等你組合發這帖。




論壇的一切暫時要停止了,但有我認識的問題,都會嘗試幫你解決!
最近很忙很忙...."""
 AL8 Forum © All rights reserved.
頂部
 samchu1004
 0038384
 此發帖者已被禁止訪問

頭銜: Banned

暱稱: Samchu

帖子: 1860

精華: 0

積分: 1820 點

現金: 0 元

存款: 10132 元

閱讀權限: 0

註冊: 2006-1-11

狀態: 離線
 
發表於 2006-9-6 18:16  資料  個人空間  短消息  加為好友 
*** 作者被禁止或刪除 內容自動屏蔽 ***
 nonameandy
 0048187
 此發帖者已被禁止訪問

頭銜: Banned

帖子: 186

精華: 0

積分: 1340 點

現金: 554 元

存款: 0 元

閱讀權限: 0

註冊: 2006-7-17

狀態: 離線
 
發表於 2006-9-6 19:41  資料  個人空間  短消息  加為好友 
*** 作者被禁止或刪除 內容自動屏蔽 ***
 lightblue
 0051372
Rank: 1

頭銜: Newbie

帖子: 9

精華: 0

積分: 130 點

現金: 85 元

存款: 0 元

閱讀權限: 10

註冊: 2006-9-1

狀態: 離線
 
發表於 2006-9-6 19:44  資料  個人空間  短消息  加為好友 
大感謝阿 !

等這功能好久囉 ^^




 AL8 Forum © All rights reserved.
頂部
 ar狂
 0031464
Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6

頭銜: Forum Legend

暱稱: 狂仔

帖子: 1426

精華: 0

積分: 14911 點

現金: 148 元

存款: 10618 元

閱讀權限: 70

註冊: 2005-9-25

來自: 澳門

狀態: 離線
 
發表於 2006-9-6 19:50  資料  個人空間  短消息  加為好友 
別別
可以設定"1"個區用[sell]嗎??




Dz好難用 .. ? 好難學 .. ?
 AL8 Forum © All rights reserved.
頂部
 渡一生
 0028142
Rank: 3Rank: 3Rank: 3
點擊查看 渡一生 的詳細資料

頭銜: Conqueror

帖子: 127

精華: 0

積分: 193 點

現金: 4 元

存款: 1013 元

閱讀權限: 20

註冊: 2005-8-8

狀態: 離線
 
發表於 2006-9-6 20:50  資料  個人空間  短消息  加為好友 
include/printable.inc.php 找不到這段

if($post['attachment'] && !$ishide) {

麻煩指導!!謝謝!!




 AL8 Forum © All rights reserved.
頂部
 nonameandy
 0048187
 此發帖者已被禁止訪問

頭銜: Banned

帖子: 186

精華: 0

積分: 1340 點

現金: 554 元

存款: 0 元

閱讀權限: 0

註冊: 2006-7-17

狀態: 離線
 
發表於 2006-9-6 22:12  資料  個人空間  短消息  加為好友 
*** 作者被禁止或刪除 內容自動屏蔽 ***
 別問我是誰
 0005547
Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9
點擊查看 別問我是誰 的詳細資料

頭銜: Honorary Admin

帖子: 9332

精華: 0

積分: 126625 點

現金: 648 元

存款: 47195 元

閱讀權限: 120

註冊: 2004-8-15

狀態: 離線
 
發表於 2006-9-6 22:20  資料  個人空間  短消息  加為好友 
QUOTE:
原帖由 渡一生 於 2006-9-6 20:50 發表。&nbsp;
include/printable.inc.php 找不到這段
if($post['attachment'] && !$ishide) {
麻煩指導!!謝謝!!

 已修正 

 include/printable.inc.php 找

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


 之下加入

        if($nopay){
        $post['message'] = preg_replace("/\[sell=(\d+)\]\s*(.+?)\s*\[\/sell\]/is", "**** 付費信息,已經隱藏 ****", $post['message']);
        }


 再找 ( 以下是將 可打印版本 在無權查看時不顯示內容 )

        if($post['attachment']) {


 改為

        if($post['attachment'] && !$nopay && !$ishide) {




小莫小於水滴 自成大海汪洋
細莫細於沙粒 自成大地四方
勤檢就是美德 儲蓄可以致富
莫等閒 白了少年頭 空悲切
 AL8 Forum © All rights reserved.
頂部
 別問我是誰
 0005547
Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9Rank: 9
點擊查看 別問我是誰 的詳細資料

頭銜: Honorary Admin

帖子: 9332

精華: 0

積分: 126625 點

現金: 648 元

存款: 47195 元

閱讀權限: 120

註冊: 2004-8-15

狀態: 離線
 
發表於 2006-9-6 22:22  資料  個人空間  短消息  加為好友 
QUOTE:
原帖由 ar狂 於 2006-9-6 19:50 發表。&nbsp;
別別
可以設定"1"個區用[sell]嗎??


每區獨立設定 可否出售 可否隱藏 可否積分瀏覽 遲些才會提供




小莫小於水滴 自成大海汪洋
細莫細於沙粒 自成大地四方
勤檢就是美德 儲蓄可以致富
莫等閒 白了少年頭 空悲切
 AL8 Forum © All rights reserved.
頂部
 asdasd
 0012108
Rank: 4Rank: 4Rank: 4Rank: 4

頭銜: Lord

帖子: 470

精華: 0

積分: 2117 點

現金: 610 元

存款: 0 元

閱讀權限: 25

註冊: 2004-11-25

來自: Discuss ...

狀態: 離線
 
發表於 2006-9-6 23:32  資料  個人空間  主頁 短消息  加為好友  添加 asdasd 為MSN好友 通過MSN和 asdasd 交談 ICQ 狀態
支持!!!!




 AL8 Forum © All rights reserved.
頂部
 渡一生
 0028142
Rank: 3Rank: 3Rank: 3
點擊查看 渡一生 的詳細資料

頭銜: Conqueror

帖子: 127

精華: 0

積分: 193 點

現金: 4 元

存款: 1013 元

閱讀權限: 20

註冊: 2005-8-8

狀態: 離線
 
發表於 2006-9-6 23:55  資料  個人空間  短消息  加為好友 
回覆第 11 帖由 別問我是誰 所發的帖子

感謝別兄的指導,謝謝!




 AL8 Forum © All rights reserved.
頂部
 glio
 0009742
Rank: 3Rank: 3Rank: 3
點擊查看 glio 的詳細資料

頭銜: Conqueror

帖子: 273

精華: 1

積分: 5255 點

現金: 13 元

存款: 18061 元

閱讀權限: 20

註冊: 2004-10-13

狀態: 離線
 
發表於 2006-9-7 13:02  資料  個人空間  短消息  加為好友 
正﹗絕對支持




 AL8 Forum © All rights reserved.
頂部
 erwinso
 0045925
Rank: 2Rank: 2

頭銜: Member

帖子: 81

精華: 0

積分: 770 點

現金: 0 元

存款: 105 元

閱讀權限: 15

註冊: 2006-6-1

狀態: 離線
 
發表於 2006-9-7 13:46  資料  個人空間  短消息  加為好友 
支持你,謝謝分享




 AL8 Forum © All rights reserved.
頂部
 渡一生
 0028142
Rank: 3Rank: 3Rank: 3
點擊查看 渡一生 的詳細資料

頭銜: Conqueror

帖子: 127

精華: 0

積分: 193 點

現金: 4 元

存款: 1013 元

閱讀權限: 20

註冊: 2005-8-8

狀態: 離線
 
發表於 2006-9-7 14:21  資料  個人空間  短消息  加為好友 
請問別兄,能不能保留原有的購買後才能回覆主題?




 AL8 Forum © All rights reserved.
頂部
 笨笨小小子
 0041863
Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6Rank: 6
點擊查看 笨笨小小子 的詳細資料

頭銜: Forum Legend

自述: Newbie

帖子: 1051

精華: 0

積分: 60 點

現金: 0 元

存款: 14031 元

閱讀權限: 70

註冊: 2006-3-18

狀態: 離線
 
發表於 2006-9-7 17:39  資料  個人空間  短消息  加為好友  添加 笨笨小小子 為MSN好友 通過MSN和 笨笨小小子 交談
請問有冇bbcode的logo加入




論壇已倒閉
 AL8 Forum © All rights reserved.
頂部
 mayuko
 0017648
Rank: 1
點擊查看 mayuko 的詳細資料

頭銜: Newbie

帖子: 34

精華: 0

積分: 282 點

現金: 3 元

存款: 0 元

閱讀權限: 10

註冊: 2005-3-13

狀態: 離線
 
發表於 2006-9-8 14:20  資料  個人空間  短消息  加為好友  添加 mayuko 為MSN好友 通過MSN和 mayuko 交談 Yahoo!
我之前冇安裝過sell lee個插件,,錦就錦安返lee d 野就 ok啦?

[ 本帖最後由 mayuko 於 2006-9-8 18:10 編輯 ]




 AL8 Forum © All rights reserved.
頂部
 g0212014
 0018008
Rank: 3Rank: 3Rank: 3

頭銜: Conqueror

帖子: 156

精華: 0

積分: 1376 點

現金: 4 元

存款: 332 元

閱讀權限: 20

註冊: 2005-3-21

狀態: 離線
 
發表於 2006-9-8 15:17  資料  個人空間  短消息  加為好友 
呼∼ 雖然步驟相當多,但是還是改好了

別大的東西總是比較能夠放心去改

大約測試一下也沒啥問題∼推一下




 AL8 Forum © All rights reserved.
頂部
 kimchan13
 0039506
Rank: 4Rank: 4Rank: 4Rank: 4

頭銜: Lord

帖子: 579

精華: 0

積分: 4550 點

現金: 17 元

存款: 1063 元

閱讀權限: 25

註冊: 2006-2-2

狀態: 離線
 
發表於 2006-9-8 16:42  資料  個人空間  短消息  加為好友 
別大~~

hide 對附件隱藏 既viewthread.htm度多左個<!--{/if}--!>
QUOTE:
<!--{if $ishide && $post['attachments'] && !$post['attachment']}-->
                        <br><br><img src="images/attachicons/common.gif"> {lang attachment}: <i>{lang attach_nopermission}</i>
                <!--{else}-->
                <!--{if $post['attachment']}-->
                        <br><br><img src="images/attachicons/common.gif"> {lang attachment}: <i>{lang attach_nopermission}</i>
                <!--{else}-->
                        <!--{loop $post['attachments'] $attach}-->
                                <br><br>$attach[attachicon]
                                <!--{if $attach['attachimg']}-->
                                        <a href="member.php?action=credits&view=getattach" title="{lang credits_policy_view}" target="_blank">{lang attach_img}</a>:
                                        <!--{if $attach['readperm']}-->, {lang readperm} $attach[readperm]<!--{/if}-->
                                        <!--{if $attach['description']}-->[{$attach[description]}]<!--{/if}--> <a href="attachment.php?aid=$attach[aid]" target="_blank" class="bold">$attach[filename]</a> ($attach[dateline], $attach[attachsize])<br><br>
                                        <!--{if $attachrefcheck}-->
                                                <img src="attachment.php?aid=$attach[aid]&noupdate=yes" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='{lang image_open_zoom}';}" onmouseover="if(this.resized) this.style.cursor='hand';" onclick="if(!this.resized) {return false;} else {window.open('attachment.php?aid=$attach[aid]');}" onmousewheel="return imgzoom(this);">
                                        <!--{else}-->
                                                <img src="$attachurl/$attach[attachment]" border="0" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='{lang image_open_zoom}';}" onmouseover="if(this.resized) this.style.cursor='hand';" onclick="if(!this.resized) {return false;} else {window.open('$attachurl/$attach[attachment]');}" onmousewheel="return imgzoom(this);">
                                        <!--{/if}-->
                                <!--{else}-->
                                        <a href="member.php?action=credits&view=getattach" title="{lang credits_policy_view}" target="_blank">{lang attachment}</a>:
                                        <!--{if $attach['description']}-->[{$attach[description]}]<!--{/if}--> <a href="attachment.php?aid=$attach[aid]" target="_blank" class="bold">$attach[filename]</a> ($attach[dateline], $attach[attachsize])<br>
                                        <span class="smalltxt">{lang attach_download_count} $attach[downloads]
                                        <!--{if $attach['readperm']}-->, {lang readperm} $attach[readperm]<!--{/if}--></span><br>
                                <!--{/if}-->
                        <!--{/loop}-->
                <!--{/if}-->
                <!--{/if}-->


[ 本帖最後由 kimchan13 於 2006-9-8 16:44 編輯 ]




 AL8 Forum © All rights reserved.
頂部
聯繫我們 - AL8 Forum - 網頁空間由 I-SERVICES 提供 - Archiver - WAP
清除 Cookies, 當前時區 GMT+8, 現在時間是 2010-9-3 15:24
Processed in 0.046182 second(s), 9 queries , Gzip enabled
Powered by Discuz! 5.5.0  © 2001-2007 Comsenz Inc.