]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove support of sqlite2 at installation
authorBrice Maron <brice@bmaron.net>
Tue, 4 Dec 2012 17:36:23 +0000 (17:36 +0000)
committerBrice Maron <brice@bmaron.net>
Tue, 4 Dec 2012 17:36:23 +0000 (17:36 +0000)
core/setup.php

index 7a5c6d5f3e041034ec6169cd7ef85d0e39ddb335..9e15f205c0087cdd47a32e4c4042897efb26d79d 100644 (file)
@@ -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');