From: Evan Prodromou Date: Sat, 4 Jul 2009 05:17:37 +0000 (-0400) Subject: don't try to show non-object X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6d72864618b73271a83aa566f35838bb1a5c57c7;p=quix0rs-gnu-social.git don't try to show non-object --- diff --git a/lib/util.php b/lib/util.php index a40cd3d54b..9e8ec41d25 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1028,6 +1028,9 @@ function common_log_objstring(&$object) if (is_null($object)) { return "null"; } + if (!($object instanceof DB_DataObject)) { + return "(unknown)"; + } $arr = $object->toArray(); $fields = array(); foreach ($arr as $k => $v) {