VerifyAccess.php
authoredward <edward@roojs.com>
Thu, 15 Feb 2018 05:20:34 +0000 (13:20 +0800)
committeredward <edward@roojs.com>
Thu, 15 Feb 2018 05:20:34 +0000 (13:20 +0800)
VerifyAccess.php

index aaca3f9..2be5a92 100644 (file)
@@ -81,17 +81,10 @@ 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'])),
             'authorized_by' => $core_person->id
         ));
         
-        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);
         
         $this->jok('OK');