summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-12-05 03:18:02 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2012-12-05 03:18:02 -0800
commitc487d9fc7e5b1c31069819cc8adc920ab9660513 (patch)
tree2115d18c1a543fc3f58b60668e829b1a43b3d395 /core
parent76625e9ba59481a0dfa4c92453f630451c098844 (diff)
parent4df61c3e45b6dabb83e90f71d876ed020a0d9be6 (diff)
downloadnextcloud-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.php2
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');