VerifyAccess.php
[Pman.Core] / VerifyAccess.php
index 2be5a92..b93f7c7 100644 (file)
@@ -14,7 +14,7 @@ class Pman_Core_VerifyAccess extends Pman
         return true;
     }
     
-    function get($id)
+    function get($id='', $opts = array())
     {
         @list($id, $key) = explode('/', $id);
         
@@ -81,7 +81,7 @@ 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' => ($_REQUEST['status'] != -2 || empty($_REQUEST['expire_dt'])) ? '' : date('Y-m-d', strtotime($_REQUEST['expire_dt'])),
             'authorized_by' => $core_person->id
         ));