diff options
author | Brice Maron <brice@bmaron.net> | 2012-12-04 17:36:23 +0000 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-12-04 17:36:23 +0000 |
commit | e6ec0e8a5e35b94dee83bdd53302d76a6f4e92fa (patch) | |
tree | 3b1a1a2498243f7dd1c1a91be45c5e74c0cdf7ec /core/setup.php | |
parent | 9e6ffece64ab8b44bc58ecb01249b682e8d45ba6 (diff) | |
download | nextcloud-server-e6ec0e8a5e35b94dee83bdd53302d76a6f4e92fa.tar.gz nextcloud-server-e6ec0e8a5e35b94dee83bdd53302d76a6f4e92fa.zip |
Remove support of sqlite2 at installation
Diffstat (limited to 'core/setup.php')
-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..9e15f205c00 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 = (is_callable('sqlite_open') and class_exists('SQLite3')); $hasMySQL = is_callable('mysql_connect'); $hasPostgreSQL = is_callable('pg_connect'); $hasOracle = is_callable('oci_connect'); |