From: Joas Schilling Date: Thu, 12 Mar 2015 08:18:43 +0000 (+0100) Subject: Also use all keys for an empty array, just in case X-Git-Tag: v8.1.0alpha1~280^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fefcbb966b6c41b9440f67b8121b9c97e1ce7df0;p=nextcloud-server.git Also use all keys for an empty array, just in case --- diff --git a/lib/private/db/adapter.php b/lib/private/db/adapter.php index d0641f113f3..de7b04c74db 100644 --- a/lib/private/db/adapter.php +++ b/lib/private/db/adapter.php @@ -50,7 +50,7 @@ class Adapter { * @throws \Doctrine\DBAL\DBALException */ public function insertIfNotExist($table, $input, array $compare = null) { - if ($compare === null) { + if (empty($compare)) { $compare = array_keys($input); } $query = 'INSERT INTO `' .$table . '` (`' diff --git a/lib/private/db/adaptersqlite.php b/lib/private/db/adaptersqlite.php index 1528285e11a..31f88940f0b 100644 --- a/lib/private/db/adaptersqlite.php +++ b/lib/private/db/adaptersqlite.php @@ -29,7 +29,7 @@ class AdapterSqlite extends Adapter { * @throws \Doctrine\DBAL\DBALException */ public function insertIfNotExist($table, $input, array $compare = null) { - if ($compare === null) { + if (empty($compare)) { $compare = array_keys($input); } $fieldList = '`' . implode('`,`', array_keys($input)) . '`';