From 42b82cfb05bfccfed018964fa277ea2ff98ddeaf Mon Sep 17 00:00:00 2001 From: edward Date: Thu, 15 Feb 2018 13:23:42 +0800 Subject: [PATCH] VerifyAccess.php --- VerifyAccess.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/VerifyAccess.php b/VerifyAccess.php index 2be5a92a..74809d7c 100644 --- a/VerifyAccess.php +++ b/VerifyAccess.php @@ -81,10 +81,14 @@ class Pman_Core_VerifyAccess extends Pman $core_ip_access->setFrom(array( 'status' => empty($_REQUEST['status']) ? 0 : $_REQUEST['status'], - 'expire_dt' => empty($_REQUEST['expire_dt']) ? '' : date('Y-m-d', strtotime($_REQUEST['expire_dt'])), + 'expire_dt' => '', 'authorized_by' => $core_person->id )); + if($core_ip_access->status == -2){ + $core_ip_access->expire_dt = date('Y-m-d', strtotime($_REQUEST['expire_dt'])); + } + $core_ip_access->update($o); $this->jok('OK'); -- 2.39.2