Also use all keys for an empty array, just in case

remotes/origin/etag-endpoint
Joas Schilling 11 years ago
parent 2af8fea2be
commit fefcbb966b
  1. 2
      lib/private/db/adapter.php
  2. 2
      lib/private/db/adaptersqlite.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 . '` (`'

@ -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)) . '`';

Loading…
Cancel
Save