DataObjects/Core_ip_access.php
[Pman.Core] / UpdateDatabase.php
index 0faff08..461bcdf 100644 (file)
@@ -744,32 +744,8 @@ class Pman_Core_UpdateDatabase extends Pman
                             
                         
                     )
-                ),
-                array(
-                    'etype' => '',
-                    'name' => 'coba.compliance_status_id',
-                    'display_name' =>  'Compliance Status',
-                    'is_system_enum' => 0,
-                    'cn' => array(
-                        array(
-                            'name' => 'Pending',
-                            'display_name' => 'Pending',
-                            
-                        ),
-                        
-                        array(
-                            'name' => 'Approved',
-                            'display_name' => 'Approved',
-                             
-                        ),
-                        array(
-                            'name' => 'Rejected',
-                            'display_name' => 'Rejected',
-                            
-                        ),                            
-                        
-                    )
-                ),
+                )
+               
             )
         ); 
         
@@ -793,10 +769,7 @@ class Pman_Core_UpdateDatabase extends Pman
                 'name' => 'core-person-signup-bcc',
                 'type' => 0, // system
             ),
-            array(
-                'name' => 'Compliance Officers',
-                'type' => 0, 
-            ),
+        
 
         ));
         
@@ -868,12 +841,13 @@ class Pman_Core_UpdateDatabase extends Pman
                 
                 $cm->bcc_group = $g->id;
             }
-            if (empty($cm->test_class)) {
+            // initEmails will always have the latest location of the test class - in theory the user should not be changign the value of this...
+            //if (empty($cm->test_class)) {
                 if (empty($data['test_class'])) {
                     $this->jerr("missing test_class for template $name");
                 }
                 $cm->test_class = $data['test_class'];
-            }
+            //}
             require_once $cm->test_class . '.php';
             
             $clsname = str_replace('/','_', $cm->test_class);