Add-On : 隱藏文章時也隱藏 Attachment Mod 附加的檔案
Version : 1.0.X
URL : http://phpbb-tw.net/phpbb/viewtopic.php?p=182284#182284
Author : KCTONY, 小西
fix : ~倉木麻衣~
#
#-----[ OPEN 打開 ]------------------------------------------------
#
#
#-----[ FIND 尋找 ]------------------------------------------------
#
代碼: 選擇全部
$message = ( $userdata['user_id'] == ANONYMOUS ) ? '<br /><br /><center><table class="quote"><tr><td><fieldset class="fieldset"><legend>' . $lang['Paymoney_message'] . '</legend>' . sprintf($lang['Paymoney_Need'], $pay_money) . $paymoney_paysee : '<br /><br /><center><table class="quote"><tr><td><fieldset class="fieldset"><legend>' . $lang['Paymoney_message'] . '</legend>' . sprintf($lang['Paymoney_Need'], $pay_money) . $paymoney_paysee . '<br /><form name="pay_money" action=' . $temp_url . ' method="post"><center><input type="submit" name="pay_money" value="' . $lang['Paymoney'] . '" class="mainoption" /></center></form>';
#
#-----[ AFTER, ADD 之後, 加上 ]------------------------------------
#
#
#-----[ FIND 尋找 ]------------------------------------------------
#
代碼: 選擇全部
display_post_attachments($postrow[$i]['post_id'], $postrow[$i]['post_attachment']);
#
#-----[ REPLACE WITH 替換 ]----------------------------------------
#
代碼: 選擇全部
if ($showatt <> 'no')
{
display_post_attachments($postrow[$i]['post_id'], $postrow[$i]['post_attachment']);
}
unset($showatt);
#
#-----[ OPEN 打開 ]------------------------------------------------
#
代碼: 選擇全部
includes\topic_review.php
#
#-----[ FIND 尋找 ]------------------------------------------------
#
代碼: 選擇全部
display_review_attachments($row['post_id'], $row['post_attachment'], $is_auth);
#
#-----[ REPLACE WITH 替換 ]----------------------------------------
#
代碼: 選擇全部
if ($showatt <> 'no')
{
display_review_attachments($row['post_id'], $row['post_attachment'], $is_auth);
}
unset($showatt);
#
#-----[ SAVE/CLOSE ALL FILES 儲存/關閉所有檔案 ]-------------------
#
# EoM 外掛修正結束