From: edward Date: Thu, 15 Feb 2018 05:07:34 +0000 (+0800) Subject: VerifyAccess.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=ae144bcacaae5ca0522301c866aa9a2f8e8b263f VerifyAccess.php --- 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); }