有 2 筆資料符合您搜尋的條件

懸壺子
2008-01-12 , 8:59
版面: phpBB3.0.x
主題: 帖子內容頁面怎麼標記樓層呀?viewtopic.body.html
回覆: 1
觀看: 1626

Re: 帖子內容頁面怎麼標記樓層呀?viewtopic.body.html

http://www.phpbbchina.com/forum/viewtop ... =24&t=1875
由IOsetting發佈

viewtopic.php, 找到

代碼: 選擇全部

$post_list = $user_cache = $id_cache = $attachments = $attach_list = $rowset = $update_count = $post_edit_list = array();
改成

代碼: 選擇全部

$floor_list = $post_list = $user_cache = $id_cache = $attachments = $attach_list = $rowset = $update_count = $post_edit_list = array();
找到

代碼: 選擇全部

while ($row = $db->sql_fetchrow($result))
{
   $post_list[$i] = $row['post_id'];
後面添加

代碼: 選擇全部

$floor_list[$i] = $start + $i + 1;
找到

代碼: 選擇全部

$row =& $rowset[$post_list[$i]];
後面添加

代碼: 選擇全部

$floor = $floor_list[$i];
找到

代碼: 選擇全部

$postrow = array(
後面添加

代碼: 選擇全部

'FLOOR'            => $floor,

岐黃稍有更改藥櫃
styles/prosilver/template/viewtopic_body.html
找到

代碼: 選擇全部

height="{postrow.POST_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF -->
後面添加

代碼: 選擇全部

<div class="pagination"><span><strong>{postrow.FLOOR}藥櫃</strong></span></div>
Edit註解: 3/3 岐黃第二次更改為
發現

代碼: 選擇全部

<div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a>
後面加上

代碼: 選擇全部

<strong>{postrow.FLOOR}藥櫃</strong>
Edit註解: 3/4 去掉粗體
發現

代碼: 選擇全部

<div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a>
後面加上

代碼: 選擇全部

{postrow.FLOOR}藥櫃

回到「帖子內容頁面怎麼標記樓層呀?viewtopic.body.html」