X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=VerifyAccess.php;fp=VerifyAccess.php;h=f6eba05a30fe330a61185105195cbbcc935312c3;hb=ae144bcacaae5ca0522301c866aa9a2f8e8b263f;hp=1b7941516b19326c6e71eb0c0696137faed8b6db;hpb=4555d1e8260f2ecad8c91d3a83b238cf4f8b2e4c;p=Pman.Core 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); }