X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=1be1647a4633f798ecf9da0420f5cfebed037ca4;hb=52226066022de840cb73424aab7d3a3348467de7;hp=bda62f34c2c1d6539bb2c757c7344deec16bfa87;hpb=181947f774c878f806a72de391fbab7fb5b273f5;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index bda62f34c2..1be1647a46 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)); } /** @@ -107,6 +107,6 @@ class dbm { $timestamp = -62135596800; } - return date('Y-m-d H:i:s', $timestamp); + return date('Y-m-d H:i:s', (int)$timestamp); } }