Merge branch 'master' of github.com:gnuboard/g4s
This commit is contained in:
@ -19,11 +19,11 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<tbody>
|
||||
<? for ($i=0; $i<count($list); $i++) { ?>
|
||||
<tr>
|
||||
<td><?=$list[$i][num]?></td>
|
||||
<td><a href="javascript:;" onclick="opener.document.location.href='<?=$list[$i][opener_href]?>';"><?=$list[$i][bo_subject]?></a></td>
|
||||
<td class="td_num"><?=$list[$i][num]?></td>
|
||||
<td class="td_board"><a href="javascript:;" onclick="opener.document.location.href='<?=$list[$i][opener_href]?>';"><?=$list[$i][bo_subject]?></a></td>
|
||||
<td><a href="javascript:;" onclick="opener.document.location.href='<?=$list[$i][opener_href_wr_id]?>';"><?=$list[$i][subject]?></a></td>
|
||||
<td><?=$list[$i][ms_datetime]?></td>
|
||||
<td><a href="javascript:del('<?=$list[$i][del_href]?>');">삭제</a></td>
|
||||
<td class="td_datetime"><?=$list[$i][ms_datetime]?></td>
|
||||
<td class="td_mng"><a href="javascript:del('<?=$list[$i][del_href]?>');">삭제</a></td>
|
||||
</tr>
|
||||
<? } ?>
|
||||
|
||||
|
||||
@ -2,28 +2,34 @@
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
?>
|
||||
|
||||
<h1>스크랩하기</h1>
|
||||
<div id="scrap_do" class="new_win">
|
||||
<h1>스크랩하기</h1>
|
||||
|
||||
<form name="f_scrap_popin" method="post" action="./scrap_popin_update.php">
|
||||
<input type="hidden" name="bo_table" value="<?=$bo_table?>">
|
||||
<input type="hidden" name="wr_id" value="<?=$wr_id?>">
|
||||
<form name="f_scrap_popin" method="post" action="./scrap_popin_update.php">
|
||||
<input type="hidden" name="bo_table" value="<?=$bo_table?>">
|
||||
<input type="hidden" name="wr_id" value="<?=$wr_id?>">
|
||||
|
||||
<table>
|
||||
<caption>스크랩 확인 및 댓글 달기</caption>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">제목</th>
|
||||
<td><?=get_text(cut_str($write[wr_subject], 255))?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="wr_content">댓글</label></th>
|
||||
<td><textarea id="wr_content" name="wr_content"></textarea></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="frm_tbl">
|
||||
<caption>스크랩 확인 및 댓글 달기</caption>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">제목</th>
|
||||
<td><?=get_text(cut_str($write[wr_subject], 255))?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="wr_content">댓글</label></th>
|
||||
<td><textarea id="wr_content" name="wr_content"></textarea></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
</form>
|
||||
|
||||
<div class="btn_window">
|
||||
<input type="submit" value="스크랩">
|
||||
</div>
|
||||
<p>
|
||||
스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다.
|
||||
</p>
|
||||
|
||||
<div class="btn_window">
|
||||
<input type="submit" value="스크랩">
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user