사용후기 제목 출력 코드 수정
This commit is contained in:
@ -61,7 +61,7 @@ $qstr .= ($qstr ? '&' : '').'sca='.$sca;
|
|||||||
<tr>
|
<tr>
|
||||||
<th scope="row"><label for="is_subject">제목</label></th>
|
<th scope="row"><label for="is_subject">제목</label></th>
|
||||||
<td><input type="text" name="is_subject" required class="required frm_input" id="is_subject" size="100"
|
<td><input type="text" name="is_subject" required class="required frm_input" id="is_subject" size="100"
|
||||||
value='<?php echo conv_subject($is['is_subject'], 120); ?>'></td>
|
value="<?php echo get_text($is['is_subject']); ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">내용</th>
|
<th scope="row">내용</th>
|
||||||
|
|||||||
@ -121,7 +121,6 @@ $listall = '<a href="'.$_SERVER['SCRIPT_NAME'].'" class="ov_listall">전체목
|
|||||||
<tbody>
|
<tbody>
|
||||||
<?php
|
<?php
|
||||||
for ($i=0; $row=sql_fetch_array($result); $i++) {
|
for ($i=0; $row=sql_fetch_array($result); $i++) {
|
||||||
$row['is_subject'] = cut_str($row['is_subject'], 30, "...");
|
|
||||||
$href = G5_SHOP_URL.'/item.php?it_id='.$row['it_id'];
|
$href = G5_SHOP_URL.'/item.php?it_id='.$row['it_id'];
|
||||||
$name = get_sideview($row['mb_id'], get_text($row['is_name']), $row['mb_email'], $row['mb_homepage']);
|
$name = get_sideview($row['mb_id'], get_text($row['is_name']), $row['mb_email'], $row['mb_homepage']);
|
||||||
$is_content = get_view_thumbnail(conv_content($row['is_content'], 1), 300);
|
$is_content = get_view_thumbnail(conv_content($row['is_content'], 1), 300);
|
||||||
|
|||||||
Reference in New Issue
Block a user