중복코드 삭제 및 경고문이 나오는 코드 수정

This commit is contained in:
thisgun
2023-01-12 10:43:25 +09:00
parent 7516424989
commit 8f3893bb43
2 changed files with 1 additions and 2 deletions

View File

@ -12,7 +12,6 @@ $ca = array(
'ca_name'=>'',
'ca_order'=>'',
'ca_mb_id'=>'',
'ca_skin_dir'=>'',
'ca_cert_use'=>0,
'ca_adult_use'=>0,
'ca_sell_email'=>'',

View File

@ -17,7 +17,7 @@ if ($stx != "") {
$sql_search .= " $where $sfl like '%$stx%' ";
$where = " and ";
}
if ($save_stx && ($save_stx != $stx))
if (isset($save_stx) && $save_stx && ($save_stx != $stx))
$page = 1;
}