From bc5d64cedb32109f2612f6bc77400c885280dfbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=8A=98?= <34568024+aug21@users.noreply.github.com> Date: Sat, 29 Oct 2022 15:18:36 +0900 Subject: [PATCH] Update ready.php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 오너명 검색이 불가능한 현상 수정 --- AvocadoEdition/member/ready.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AvocadoEdition/member/ready.php b/AvocadoEdition/member/ready.php index 2387720..dce23b2 100644 --- a/AvocadoEdition/member/ready.php +++ b/AvocadoEdition/member/ready.php @@ -62,11 +62,11 @@ if(!$search_arcode) { } if($stx) { - if($sfl == 'mb_nick') { + if($sfl == 'mb_name') { $temp_search = ""; $connect_str = ""; - $temp = sql_query("select mb_id from {$g5['member_table']} where mb_nick like '%".$stx."%'"); + $temp = sql_query("select mb_id from {$g5['member_table']} where mb_name like '%".$stx."%'"); for($t = 0; $row = sql_fetch_array($temp); $t++) { $temp_search .= $connect_str."mb_id = '".$row['mb_id']."'"; $connect_str = " OR ";