Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
XSS 취약점(16-223) 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chicpro committed Mar 9, 2016
1 parent 479ef66 commit 8ae36f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adm/shop_admin/orderform.php
Expand Up @@ -397,7 +397,7 @@
</tr>
<tr>
<th scope="row">입금자</th>
<td><?php echo $od['od_deposit_name']; ?></td>
<td><?php echo get_text($od['od_deposit_name']); ?></td>
</tr>
<tr>
<th scope="row">입금확인일시</th>
Expand Down Expand Up @@ -686,7 +686,7 @@
<label for="od_sms_ipgum_check">SMS 입금 문자전송</label>
<br>
<?php } ?>
<input type="text" name="od_deposit_name" value="<?php echo $od['od_deposit_name']; ?>" id="od_deposit_name" class="frm_input">
<input type="text" name="od_deposit_name" value="<?php echo get_text($od['od_deposit_name']); ?>" id="od_deposit_name" class="frm_input">
</td>
</tr>
<tr>
Expand Down

0 comments on commit 8ae36f4

Please sign in to comment.