검색부분에서 불필요한 isset 삭제

This commit is contained in:
chicpro
2013-06-03 18:36:22 +09:00
parent 463654cec8
commit 828b2e08d1

View File

@ -53,7 +53,7 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
$mb = array();
if ($sfl == 'mb_id' && $stx)
$mb = get_member(isset($stx));
$mb = get_member($stx);
$g4['title'] = '마일리지관리';
include_once (G4_ADMIN_PATH.'/admin.head.php');