Skip to content

Commit

Permalink
Remove useless dependency on SQLite (non-PDO)
Browse files Browse the repository at this point in the history
* we only require the PDO driver
* fixes #481

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
  • Loading branch information
MorrisJobke committed Jan 24, 2017
1 parent e09bba5 commit fe2915c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/private/Setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ protected function getAvailableDbDriversForPdo() {
public function getSupportedDatabases($allowAllDatabases = false) {
$availableDatabases = array(
'sqlite' => array(
'type' => 'class',
'call' => 'SQLite3',
'type' => 'pdo',
'call' => 'sqlite',
'name' => 'SQLite'
),
'mysql' => array(
Expand Down

0 comments on commit fe2915c

Please sign in to comment.