PALMisLIFE 討論區

標題: [Discuz! Hack]關閉的主題用刪除線表示 [列印本頁]

作者: jamesanna    時間: 2003-9-14 03:35
標題: [Discuz! Hack]關閉的主題用刪除線表示
適用版本:Discuz! 2.0 COML

作者:原作者不詳

修改文件:forumdisplay.php

修改模板:css



修改css模板
加入

  1. span.locked {
  2. TEXT-DECORATION: LINE-THROUGH;
  3. }
複製代碼


修改forumdisplay.php

查找
      
  1. if($thread['attachment']) {
  2.                 $thread['subject'] = attachicon($thread['attachment']).' '.$thread['subject'];
  3.         }
複製代碼


下加入

      
  1. // deleteline hack
  2.        if($thread['closed']) {
  3.        $thread['subject'] = "<span class='locked'>".$thread['subject']."</span>";
  4.        }
  5.        //end hack
複製代碼





歡迎光臨 PALMisLIFE 討論區 (http://f.pil.tw/) Powered by Discuz! X2.5