X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=3430577da6a05665b0e93445f0b973c9745e216f;hb=0135b7e357064f5fc6e0983991e297b729b6f87a;hp=d28d49d63b4b53647392f5d6c928fdba5b76d3bf;hpb=222550e784fdcea6c3133cc4754b1fd469e9fef6;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index d28d49d63b..3430577da6 100644 --- a/include/dbm.php +++ b/include/dbm.php @@ -2,6 +2,7 @@ /** * @brief This class contain functions for the database management * + * This class contains functions that doesn't need to know if pdo, mysqli or whatever is used. */ class dbm { /** @@ -47,6 +48,11 @@ class dbm { if (is_bool($array)) { return $array; } + + if (is_object($array)) { + return true; + } + return (is_array($array) && count($array) > 0); }