상세 컨텐츠

본문 제목

[테크노트] 게시물 일정조회수 이상 hit 아이콘 붙이기

게시판스킨소스

by 일본뉴스 2007. 1. 14. 05:56

본문

http://www.ilovenakama.com  일본 나까마 일본티비동영상, 한일 홈페이지제작

수정내용
게시판스킨 2_index.php중에서 빨간글자 추가
...........................................................................................................................................
<!-- //[4] 글제목
function INDEX_cell_4(){
 global $Bconfig,$Index_data,$this_skin,$no,$subject_link_function,$search;?>
<td class=list_subject>
 <?
  echo $subject_link_function(); // 글제목 아이콘 및 <a href=본문링크>
  if($search) echo preg_replace("/$search/i","<span style='color:#dd0000;'>\\0</span>",string_cut($Index_data['subject'],$Bconfig['tx4_3'],'..')); // 검색어 글자색
  else echo string_cut($Index_data['subject'],$Bconfig['tx4_3'],'..');//글제목 출력 길이제한 적용(보드설정-[4-3])
  echo '</a>';
  if($Index_data['comment'] and !$GLOBALS[putrepl]){
   echo " <font class=font_repcnt><b>$Index_data[comment]</b>"; // 댓글
   if($Index_data['comment2']) echo "+$Index_data[comment2]"; // 쪽글수
   echo "</font>";
  }
  if($Index_data['give_point']>0) //포인트 증여글 표시
   echo " &nbsp;<img src='$this_skin/b_img/attrib/money.gif' align=absmiddle><font style='font-size:7pt; font-family:Tahoma; color:#ff6600;'>". number_format($Index_data['give_point'])."</font>";
  if($Index_data['new_icon']) echo " <img src='$this_skin/b_img/attrib/new.gif' border=0>"; // new icon
  
  if($Index_data['vote']>50) //베스트목록
   echo " &nbsp;<img src='$this_skin/b_img/attrib/hit.gif' border=0>"; // hit icon
 ?>
</td>

<?}
-->

관련글 더보기