function act_audit_log()
 {
     include_once APPROOT . 'inc/lib_form_util.inc';
     $this->pid = isset($_GET['pid']) && $_GET['pid'] != null ? $_GET['pid'] : $_SESSION['pid'];
     if ($this->pid != null) {
         $person = new Person();
         $person->LoadfromRecordNumber($this->pid);
         $this->person = $person;
         $logs = Browse::getAuditLogForPerson($this->pid);
         $this->logs = $logs;
     }
 }