From: Michael Rasmussen Date: Thu, 25 Jun 2015 18:04:45 +0000 (+0200) Subject: More functions for wblist page X-Git-Url: http://git.datanom.net/qtadmin.git/commitdiff_plain/840f130b4a3ad813c3e1b77b22c76a922fb2426c More functions for wblist page --- diff --git a/lib/utils.inc.php b/lib/utils.inc.php index 3f793a5..b61796c 100644 --- a/lib/utils.inc.php +++ b/lib/utils.inc.php @@ -254,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();