DataObjects/Core_group.php
[Pman.Core] / UpdateDatabase.php
index a06c18b..3207977 100644 (file)
@@ -676,7 +676,6 @@ class Pman_Core_UpdateDatabase extends Pman
             echo "Running updateData on modules\n";
             // runs core...
             echo "Core\n";
-            var_dump(DB_DataObject::DebugLevel());exit;
             $this->updateData(); 
         }
         
@@ -942,6 +941,8 @@ class Pman_Core_UpdateDatabase extends Pman
             PDO_DataObject_Introspection::$cache = array();
         }
         HTML_FlexyFramework::get()->generateDataobjectsCache(true);
+        
+         
         $this->updateDataEnums();
         $this->updateDataGroups();
         $this->updateDataCompanies();
@@ -1192,7 +1193,16 @@ class Pman_Core_UpdateDatabase extends Pman
         // this needs to clear it's own cache along with remote one..
   
         $url = "http://localhost{$this->local_base_url}/Core/RefreshDatabaseCache";
-        $this->curl($url);
+        
+        $response = $this->curl($url);
+        
+        $json = json_decode($response, true);
+        
+        if(empty($json['data']) || $json['data'] != 'DONE'){
+            echo $response. "\n";
+            echo "CURL clear cache failed\n";
+            exit;
+        }
         
     }