]> git.mxchange.org Git - friendica.git/blobdiff - include/dbm.php
DFRN: Improved delivery status handling
[friendica.git] / include / dbm.php
index bda62f34c2c1d6539bb2c757c7344deec16bfa87..de4aef7d2b196cf89a5bcb5578da6e98b45285bf 100644 (file)
@@ -41,7 +41,7 @@ class dbm {
         * Checks if $array is a filled array with at least one entry.
         *
         * @param       $array  mixed   A filled array with at least one entry
-        * @return      Whether $array is a filled array
+        * @return      Whether $array is a filled array or an object with rows
         */
        public static function is_result($array) {
                // It could be a return value from an update statement
@@ -50,10 +50,10 @@ class dbm {
                }
 
                if (is_object($array)) {
-                       return true;
+                       return dba::num_rows($array) > 0;
                }
 
-               return (is_array($array) && count($array) > 0);
+               return (is_array($array) && (count($array) > 0));
        }
 
        /**