diff --git a/extdbms/lib/Controllers/DBMS/Client/CouponController.php b/extdbms/lib/Controllers/DBMS/Client/CouponController.php index 4b84c8b..bf8818f 100644 --- a/extdbms/lib/Controllers/DBMS/Client/CouponController.php +++ b/extdbms/lib/Controllers/DBMS/Client/CouponController.php @@ -44,10 +44,6 @@ class CouponController extends ClientController //WEB 접속방법 : http://localhost/site/client/coupon/index public function index(array $params) { - //전체 관리자정보(등록자) - if (!array_key_exists('mkid', $params)) { - throw new \Exception("mkid 값이 정의되지 않았습니다."); - } //쿠폰내역 $this->curPage = intval($params['curPage'] ?? $this->request->get('curPage') ?? 1); $this->perPage = intval($params['perPage'] ?? $this->request->get('perPage') ?? VIEW_LIST_PERPAGE);