From a0567d40813a82d46d4b5cbe0baec75e9e0f0c0a Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 15 Aug 2017 06:08:26 +0000 Subject: [PATCH] dbm::is_result now checks whether a dba:... call returns at least one result --- include/dbm.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/dbm.php b/include/dbm.php index bda62f34c..de4aef7d2 100644 --- a/include/dbm.php +++ b/include/dbm.php @@ -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)); } /**