X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/f1c0988bd7f213a40ce3cfcf6d7522bd2fd12afa..840f130b4a3ad813c3e1b77b22c76a922fb2426c:/lib/utils.inc.php?ds=inline diff --git a/lib/utils.inc.php b/lib/utils.inc.php index 6cea76e..b61796c 100644 --- a/lib/utils.inc.php +++ b/lib/utils.inc.php @@ -22,7 +22,54 @@ class Utils { __TITLE__ -
'; + + + +
'; private $footer = '
'; @@ -207,7 +254,11 @@ class Utils { } else { // HTTP GET $data = json_decode($response['content']); - $result = $data->data; + if (is_object($data)) { + $result = $data->data; + } else { + $result = array('No result'); + } } } else { $result = ($data) ? false : array();