From: Jörn Friedrich Dreyer Date: Wed, 8 May 2013 13:30:04 +0000 (+0200) Subject: allow install when only oracle is available X-Git-Tag: v6.0.0alpha2~749^2~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1b68c0c0cdf1fb68149efd18e661be0a38bcfd62;p=nextcloud-server.git allow install when only oracle is available --- diff --git a/lib/util.php b/lib/util.php index 48c224a3034..01e2df7bfc4 100755 --- a/lib/util.php +++ b/lib/util.php @@ -173,7 +173,8 @@ class OC_Util { //check for database drivers if(!(is_callable('sqlite_open') or class_exists('SQLite3')) and !is_callable('mysql_connect') - and !is_callable('pg_connect')) { + and !is_callable('pg_connect') + and !is_callable('oci_connect')) { $errors[]=array('error'=>'No database drivers (sqlite, mysql, or postgresql) installed.', 'hint'=>'');//TODO: sane hint $web_server_restart= true;