diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-12 09:18:43 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-12 09:18:43 +0100 |
commit | fefcbb966b6c41b9440f67b8121b9c97e1ce7df0 (patch) | |
tree | 12c930c2bbf22bb19ee693555628b122ea408c83 /lib | |
parent | 2af8fea2beb44b4f7f0e4b10adf284da37936a78 (diff) | |
download | nextcloud-server-fefcbb966b6c41b9440f67b8121b9c97e1ce7df0.tar.gz nextcloud-server-fefcbb966b6c41b9440f67b8121b9c97e1ce7df0.zip |
Also use all keys for an empty array, just in case
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/db/adapter.php | 2 | ||||
-rw-r--r-- | lib/private/db/adaptersqlite.php | 2 |
2 files changed, 2 insertions, 2 deletions
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)) . '`'; |