오류 메세지 수정

오류 메세지 수정
This commit is contained in:
TATECK 2022-10-29 08:49:02 +09:00
parent e0f2e55c03
commit 4ff548c52d

View file

@ -11,8 +11,8 @@ sql_query(" ALTER TABLE `{$g5['character_table']}` ADD `ch_pass_state` varchar(2
}
/** 세력 정보 **/
if($config['cf_side_title']) {
$ch_si = array();
if($config['cf_side_title']) {
$side_result = sql_query("select si_id, si_name from {$g5['side_table']} where si_auth <= '{$member['mb_level']}' order by si_id asc");
for($i=0; $row = sql_fetch_array($side_result); $i++) {
$ch_si[$i]['name'] = $row['si_name'];
@ -21,8 +21,8 @@ if($config['cf_side_title']) {
}
/** 종족 정보 **/
if($config['cf_class_title']) {
$ch_cl = array();
if($config['cf_class_title']) {
$class_result = sql_query("select cl_id, cl_name from {$g5['class_table']} where cl_auth <= '{$member['mb_level']}' order by cl_id asc");
for($i=0; $row = sql_fetch_array($class_result); $i++) {
$ch_cl[$i]['name'] = $row['cl_name'];