diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-05-08 15:30:04 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-05-22 13:56:57 +0200 |
commit | 1b68c0c0cdf1fb68149efd18e661be0a38bcfd62 (patch) | |
tree | 32393dd11282116628a01bc1ef5ba18ca0c3799f /lib/util.php | |
parent | 9fd2be07579e7c86e3041b288734e26997ef6954 (diff) | |
download | nextcloud-server-1b68c0c0cdf1fb68149efd18e661be0a38bcfd62.tar.gz nextcloud-server-1b68c0c0cdf1fb68149efd18e661be0a38bcfd62.zip |
allow install when only oracle is available
Diffstat (limited to 'lib/util.php')
-rwxr-xr-x | lib/util.php | 3 |
1 files changed, 2 insertions, 1 deletions
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; |