X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=6098dce739feec494587391382643249e39d4b4c;hb=5ca93d054104b4af964263ec5b054806b5222bba;hp=812989072b7232aacd7d5e0d10f0dd444ca25ef3;hpb=abb827b784e8f9b11e7dd58437d6209bef0d60d2;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index 812989072b..6098dce739 100644 --- a/include/dbm.php +++ b/include/dbm.php @@ -44,9 +44,9 @@ class dbm { */ public static function is_result($array) { // It could be a return value from an update statement - if (is_bool($array)) + if (is_bool($array)) { return $array; - + } return (is_array($array) && count($array) > 0); } }