sms5 코드 체크 및 수정

This commit is contained in:
chicpro
2014-04-15 15:12:55 +09:00
parent b6bfef3b65
commit a50f7ce802
13 changed files with 57 additions and 58 deletions

View File

@ -41,7 +41,7 @@ include_once(G5_ADMIN_PATH.'/admin.head.php');
$qry = sql_query("select * from {$g5['sms5_form_group_table']} order by fg_name");
while($res = sql_fetch_array($qry)) {
?>
<option value="<?php echo $res['fg_no']?>" <?php echo $res['fg_no']==$write['fg_no']?'selected':''?>><?php echo $res['fg_name']?></option>
<option value="<?php echo $res['fg_no']?>"<?php echo get_selected($res['fg_no'], $write['fg_no']); ?>><?php echo $res['fg_name']?></option>
<?php } ?>
</select>
</td>