diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-12-05 03:18:02 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-12-05 03:18:02 -0800 |
commit | c487d9fc7e5b1c31069819cc8adc920ab9660513 (patch) | |
tree | 2115d18c1a543fc3f58b60668e829b1a43b3d395 /core | |
parent | 76625e9ba59481a0dfa4c92453f630451c098844 (diff) | |
parent | 4df61c3e45b6dabb83e90f71d876ed020a0d9be6 (diff) | |
download | nextcloud-server-c487d9fc7e5b1c31069819cc8adc920ab9660513.tar.gz nextcloud-server-c487d9fc7e5b1c31069819cc8adc920ab9660513.zip |
Merge pull request #716 from eMerzh/remove_sqlite2
Remove support of sqlite2
Diffstat (limited to 'core')
-rw-r--r-- | core/setup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/setup.php b/core/setup.php index 7a5c6d5f3e0..66b8cf378bd 100644 --- a/core/setup.php +++ b/core/setup.php @@ -12,7 +12,7 @@ if( file_exists( $autosetup_file )) { OC_Util::addScript('setup'); -$hasSQLite = (is_callable('sqlite_open') or class_exists('SQLite3')); +$hasSQLite = class_exists('SQLite3'); $hasMySQL = is_callable('mysql_connect'); $hasPostgreSQL = is_callable('pg_connect'); $hasOracle = is_callable('oci_connect'); |