게시판 목록에서요.. 정보
게시판 목록에서요..본문
질문 드립니다.
게시판 목록에서요..
처음 글쓸때는 a.gif 라는 그림이 제목 앞에 보이고요..
답변을 달면 b.gif라는 그림이 보였으면 하는데요..
어떻게 해야 하는지 잘 못찾겠습니다... 도와주세요 ^^
댓글 전체
"lib/common.lib.php: get_list()함수
$list['icon_reply'] = "";
if ($list['reply'])
$list['icon_reply'] = "<img src='$skin_path/img/icon_reply.gif' align='absmiddle'>";
이것을 근거로
skin/board/basic/list.skin.php: 70 근방
<td align=left style='word-break:break-all;'>
<?
echo $nobr_begin;
echo $list[$i][reply];
echo $list[$i][icon_reply];
echo "<a href='{$list[$i][href]}'>";
===>
<td align=left style='word-break:break-all;'>
<?
echo $nobr_begin;
if( $list[$i][reply]) echo str_repeat(' ', a.gif 가로 크기 만큼); else echo '<img src=적당한_경로/a.gif>';
echo $list[$i][reply];
echo $list[$i][icon_reply];
echo "<a href='{$list[$i][href]}'>";
$list['icon_reply'] = "";
if ($list['reply'])
$list['icon_reply'] = "<img src='$skin_path/img/icon_reply.gif' align='absmiddle'>";
이것을 근거로
skin/board/basic/list.skin.php: 70 근방
<td align=left style='word-break:break-all;'>
<?
echo $nobr_begin;
echo $list[$i][reply];
echo $list[$i][icon_reply];
echo "<a href='{$list[$i][href]}'>";
===>
<td align=left style='word-break:break-all;'>
<?
echo $nobr_begin;
if( $list[$i][reply]) echo str_repeat(' ', a.gif 가로 크기 만큼); else echo '<img src=적당한_경로/a.gif>';
echo $list[$i][reply];
echo $list[$i][icon_reply];
echo "<a href='{$list[$i][href]}'>";