X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=6098dce739feec494587391382643249e39d4b4c;hb=df8b522f6b96bc3a631e608ee430555590e91f0c;hp=812989072b7232aacd7d5e0d10f0dd444ca25ef3;hpb=e5c7ce090299102f427bdf427f5347ef6c17d121;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); } }