From ae144bcacaae5ca0522301c866aa9a2f8e8b263f Mon Sep 17 00:00:00 2001 From: edward Date: Thu, 15 Feb 2018 13:07:34 +0800 Subject: [PATCH] VerifyAccess.php --- VerifyAccess.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/VerifyAccess.php b/VerifyAccess.php index 1b794151..f6eba05a 100644 --- a/VerifyAccess.php +++ b/VerifyAccess.php @@ -63,8 +63,19 @@ class Pman_Core_VerifyAccess extends Pman $this->jdata($core_ip_access->toArray()); } - print_R($_REQUEST);exit; + $o = clone($core_ip_access); + $core_ip_access->status = empty($_REQUEST['status']) ? 0 : $_REQUEST['status']; + + if($core_ip_access->status == -2){ + + $core_ip_access->setFrom(array( + 'status' => 1, + 'expire_dt' => date('Y-m-d', strtotime($_REQUEST['expire_dt'])) + )); + } + + $core_ip_access->update($o); } -- 2.39.2