diff options
author | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2013-07-10 00:49:05 +0300 |
---|---|---|
committer | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2013-07-10 00:49:05 +0300 |
commit | 194ab11322cc18597fa55619f4578ec4c6adc58b (patch) | |
tree | e64b10e71b49b8b305e0fc7aecf675d3abcdfe0d /lib/setup | |
parent | 40879c6327af41d18077f8601a3c2934624b668f (diff) | |
download | nextcloud-server-194ab11322cc18597fa55619f4578ec4c6adc58b.tar.gz nextcloud-server-194ab11322cc18597fa55619f4578ec4c6adc58b.zip |
General fixes
Diffstat (limited to 'lib/setup')
-rw-r--r-- | lib/setup/oci.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/setup/oci.php b/lib/setup/oci.php index 577948766bd..86b53de45a4 100644 --- a/lib/setup/oci.php +++ b/lib/setup/oci.php @@ -9,8 +9,8 @@ class OCI extends AbstractDatabase { public function initialize($config) { parent::initialize($config); - if (array_key_exists('dbtablespace', $options)) { - $this->dbtablespace = $options['dbtablespace']; + if (array_key_exists('dbtablespace', $config)) { + $this->dbtablespace = $config['dbtablespace']; } else { $this->dbtablespace = 'USERS'; } @@ -31,14 +31,14 @@ class OCI extends AbstractDatabase { if(!$connection) { $e = oci_error(); if (is_array ($e) && isset ($e['message'])) { - throw new DatabaseSetupException($l->t('Oracle connection could not be established'), + throw new \DatabaseSetupException($this->trans->t('Oracle connection could not be established'), $e['message'].' Check environment: ORACLE_HOME='.getenv('ORACLE_HOME') .' ORACLE_SID='.getenv('ORACLE_SID') .' LD_LIBRARY_PATH='.getenv('LD_LIBRARY_PATH') .' NLS_LANG='.getenv('NLS_LANG') .' tnsnames.ora is '.(is_readable(getenv('ORACLE_HOME').'/network/admin/tnsnames.ora')?'':'not ').'readable'); } - throw new DatabaseSetupException($l->t('Oracle username and/or password not valid'), + throw new \DatabaseSetupException($this->trans->t('Oracle username and/or password not valid'), 'Check environment: ORACLE_HOME='.getenv('ORACLE_HOME') .' ORACLE_SID='.getenv('ORACLE_SID') .' LD_LIBRARY_PATH='.getenv('LD_LIBRARY_PATH') |