UpdateDatabase.php
authorAlan Knowles <alan@roojs.com>
Fri, 6 Jul 2018 01:40:35 +0000 (09:40 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 6 Jul 2018 01:40:35 +0000 (09:40 +0800)
UpdateDatabase.php

index 8668916..993f1ab 100644 (file)
@@ -1196,10 +1196,10 @@ class Pman_Core_UpdateDatabase extends Pman
         
         $response = $this->curl($url);
         
-        $response = json_decode($response, true);
+        $json = json_decode($response, true);
         
-        if(empty($response['data']) || $response['data'] != 'DONE'){
-            print_r($response);
+        if(empty($json['data']) || $json['data'] != 'DONE'){
+            echo $response. "\n";
             exit;
         }