![]() |
|
|||||||
| 論壇說明 | 標記討論區已讀 |
|
歡迎您來到『史萊姆論壇』 ^___^ 您目前正以訪客的身份瀏覽本論壇,訪客所擁有的權限將受到限制,您可以瀏覽本論壇大部份的版區與文章,但您將無法參與任何討論或是使用私人訊息與其他會員交流。若您希望擁有完整的使用權限,請註冊成為我們的一份子,註冊的程序十分簡單、快速,而且最重要的是--註冊是完全免費的! 請點擊這裡:『註冊成為我們的一份子!』 |
![]() |
|
|
主題工具 | 顯示模式 |
|
|
|
|
#1 (permalink) |
|
長老會員
![]() |
搜尋:
if ($thread['sticky']) { $threadbit = &$threadbits_sticky; } else { $threadbit = &$threadbits; } 替換為: if ($thread['globalsticky']) { $threadbit = &$threadbits_globalsticky; } elseif ($thread['sticky']) { $threadbit = &$threadbits_sticky; } else { $threadbit = &$threadbits; } 搜尋: $show['stickies'] = iif ($threadbits_sticky != '', true, false); 在後面添加: $show['globalstickies'] = iif ($threadbits_globalsticky != '', true, false); functions_forumdisplay.php 搜尋: // sticky thread? if ($thread['sticky']) { $show['sticky'] = true; $thread['typeprefix'] = $vbphrase['sticky_thread_prefix']; } else { $show['sticky'] = false; $thread['typeprefix'] = ''; } 替換為: // sticky thread? if ($thread['globalsticky']) { $show['globalsticky'] = true; $thread['typeprefix'] = $vbphrase['globalsticky_thread_prefix']; } elseif ($thread['sticky']) { $show['sticky'] = true; $thread['typeprefix'] = $vbphrase['sticky_thread_prefix']; } else { $show['sticky'] = false; $show['globalsticky'] = false; $thread['typeprefix'] = ''; } |
|
__________________ 給自己看也給所有需要這些話鼓勵的人看! 認真不一定會得到美好的結果,但是不認真就一定沒有 想要有什麼結果,就秉持你的雙手 放手去做 總比什麼都沒付出最後失敗了才嘆氣來的好吧 沒努力的人.沒有資格說放棄 努力過的人.更要有勇氣繼續努力下去
|
|
|
|
送花文章: 1,
|