상품문의 후기 내용없을 때 체크 스크립트 추가

This commit is contained in:
chicpro
2013-10-08 11:06:16 +09:00
parent 3722fbe360
commit 11c7277319
4 changed files with 12 additions and 4 deletions

View File

@ -21,7 +21,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<tbody>
<tr>
<th scope="row"><label for="iq_subject">제목</label></th>
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="frm_input" minlength="2" maxlength="250"></td>
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
</tr>
<tr>
<th scope="row"><label for="iq_question">질문</label></th>
@ -41,6 +41,8 @@ function fitemqa_submit(f)
{
<?php echo get_editor_js('iq_question'); ?>
<?php echo chk_editor_js('iq_question'); ?>
return true;
}
</script>

View File

@ -21,7 +21,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<tbody>
<tr>
<th scope="row"><label for="is_subject">제목</label></th>
<td><input type="text" name="is_subject" value="<?php echo get_text($use['is_subject']); ?>" id="is_subject" required class="frm_input" minlength="2" maxlength="250"></td>
<td><input type="text" name="is_subject" value="<?php echo get_text($use['is_subject']); ?>" id="is_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
</tr>
<tr>
<th scope="row"><label for="" style="width:200px;">내용</label></th>
@ -74,6 +74,8 @@ function fitemuse_submit(f)
{
<?php echo get_editor_js('is_content'); ?>
<?php echo chk_editor_js('is_content'); ?>
return true;
}
</script>

View File

@ -21,7 +21,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<tbody>
<tr>
<th scope="row"><label for="iq_subject">제목</label></th>
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="frm_input" minlength="2" maxlength="250"></td>
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
</tr>
<tr>
<th scope="row"><label for="iq_question">질문</label></th>
@ -41,6 +41,8 @@ function fitemqa_submit(f)
{
<?php echo get_editor_js('iq_question'); ?>
<?php echo chk_editor_js('iq_question'); ?>
return true;
}
</script>

View File

@ -21,7 +21,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<tbody>
<tr>
<th scope="row"><label for="is_subject">제목</label></th>
<td><input type="text" name="is_subject" value="<?php echo get_text($use['is_subject']); ?>" id="is_subject" required class="frm_input" minlength="2" maxlength="250"></td>
<td><input type="text" name="is_subject" value="<?php echo get_text($use['is_subject']); ?>" id="is_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
</tr>
<tr>
<th scope="row"><label for="" style="width:200px;">내용</label></th>
@ -74,6 +74,8 @@ function fitemuse_submit(f)
{
<?php echo get_editor_js('is_content'); ?>
<?php echo chk_editor_js('is_content'); ?>
return true;
}
</script>