Merge branch 'master' of github.com:gnuboard/yc4s

This commit is contained in:
whitedot
2013-11-22 15:44:26 +09:00
20 changed files with 140 additions and 60 deletions

View File

@ -12,6 +12,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<input type="hidden" name="w" value="<?php echo $w; ?>">
<input type="hidden" name="it_id" value="<?php echo $it_id; ?>">
<input type="hidden" name="iq_id" value="<?php echo $iq_id; ?>">
<input type="hidden" name="is_mobile_shop" value="1">
<div class="tbl_frm01 tbl_wrap">
<table>
@ -41,7 +42,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
</tr>
<tr>
<th scope="row"><label for="iq_question">질문</label></th>
<td><?php echo editor_html('iq_question', $qa['iq_question']); ?></td>
<td><?php echo $editor_html; ?></td>
</tr>
</tbody>
</table>
@ -57,9 +58,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<script type="text/javascript">
function fitemqa_submit(f)
{
<?php echo get_editor_js('iq_question'); ?>
<?php echo chk_editor_js('iq_question'); ?>
<?php echo $editor_js; ?>
return true;
}

View File

@ -12,6 +12,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<input type="hidden" name="w" value="<?php echo $w; ?>">
<input type="hidden" name="it_id" value="<?php echo $it_id; ?>">
<input type="hidden" name="is_id" value="<?php echo $is_id; ?>">
<input type="hidden" name="is_mobile_shop" value="1">
<div class="tbl_frm01 tbl_wrap">
<table>
@ -26,34 +27,34 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
</tr>
<tr>
<th scope="row"><label for="" style="width:200px;">내용</label></th>
<td><?php echo editor_html('is_content', $use['is_content']); ?></td>
<td><?php echo $editor_html; ?></td>
</tr>
<tr>
<th scope="row">평가</th>
<td>
<ul id="sit_use_write_star">
<li>
<input type="radio" name="is_score" value="10" id="is_score10" <?php echo ($is_score==10)?'checked="checked"':''; ?>>
<input type="radio" name="is_score" value="5" id="is_score10" <?php echo ($is_score==5)?'checked="checked"':''; ?>>
<label for="is_score10">매우만족</label>
<img src="<?php echo G5_SHOP_URL; ?>/img/s_star5.png">
</li>
<li>
<input type="radio" name="is_score" value="8" id="is_score8" <?php echo ($is_score==8)?'checked="checked"':''; ?>>
<input type="radio" name="is_score" value="4" id="is_score8" <?php echo ($is_score==4)?'checked="checked"':''; ?>>
<label for="is_score8">만족</label>
<img src="<?php echo G5_SHOP_URL; ?>/img/s_star4.png">
</li>
<li>
<input type="radio" name="is_score" value="6" id="is_score6" <?php echo ($is_score==6)?'checked="checked"':''; ?>>
<input type="radio" name="is_score" value="3" id="is_score6" <?php echo ($is_score==3)?'checked="checked"':''; ?>>
<label for="is_score6">보통</label>
<img src="<?php echo G5_SHOP_URL; ?>/img/s_star3.png">
</li>
<li>
<input type="radio" name="is_score" value="4" id="is_score4" <?php echo ($is_score==4)?'checked="checked"':''; ?>>
<input type="radio" name="is_score" value="2" id="is_score4" <?php echo ($is_score==2)?'checked="checked"':''; ?>>
<label for="is_score4">불만</label>
<img src="<?php echo G5_SHOP_URL; ?>/img/s_star2.png">
</li>
<li>
<input type="radio" name="is_score" value="2" id="is_score2" <?php echo ($is_score==2)?'checked="checked"':''; ?>>
<input type="radio" name="is_score" value="1" id="is_score2" <?php echo ($is_score==1)?'checked="checked"':''; ?>>
<label for="is_score2">매우불만</label>
<img src="<?php echo G5_SHOP_URL; ?>/img/s_star1.png">
</li>
@ -75,9 +76,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<script type="text/javascript">
function fitemuse_submit(f)
{
<?php echo get_editor_js('is_content'); ?>
<?php echo chk_editor_js('is_content'); ?>
<?php echo $editor_js; ?>
return true;
}