@@ -328,8 +328,8 @@ |
||
328 | 328 | " (" . implode(", ", $originals) . ") SELECT " . implode( |
329 | 329 | ", ", |
330 | 330 | array_map(function ($key) { |
331 | - return $this->driver->escapeId($key); |
|
332 | - }, array_keys($originals)) |
|
331 | + return $this->driver->escapeId($key); |
|
332 | + }, array_keys($originals)) |
|
333 | 333 | ) . " FROM " . $this->driver->table($table))) { |
334 | 334 | return false; |
335 | 335 | } |
@@ -85,8 +85,7 @@ |
||
85 | 85 | $connection = null; |
86 | 86 | if (extension_loaded("pdo_sqlite")) { |
87 | 87 | $connection = new Db\Pdo\Connection($this, $this->util, $this->trans, 'PDO_SQLite'); |
88 | - } |
|
89 | - else { |
|
88 | + } else { |
|
90 | 89 | throw new AuthException($this->trans->lang('No package installed to open a Sqlite database.')); |
91 | 90 | } |
92 | 91 |