diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-05-08 16:18:24 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-14 13:16:02 +0200 |
commit | d6878f5551d8524aa1ef57cfa0afe811f81d3fa0 (patch) | |
tree | ad81a93384da6b26513be36442f24d0b563f3b70 /lib/db.php | |
parent | be534fecf401761bdc6ecae8d985ace49e1cb5bd (diff) | |
download | nextcloud-server-d6878f5551d8524aa1ef57cfa0afe811f81d3fa0.tar.gz nextcloud-server-d6878f5551d8524aa1ef57cfa0afe811f81d3fa0.zip |
use to_char only for oracle, whitespace
Diffstat (limited to 'lib/db.php')
-rw-r--r-- | lib/db.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/db.php b/lib/db.php index 013351fcdcf..7c75dc67868 100644 --- a/lib/db.php +++ b/lib/db.php @@ -273,12 +273,12 @@ class OC_DB { break; case 'oci': $dsn = array( - 'phptype' => 'oci8', - 'username' => $user, - 'password' => $pass, - 'service' => $name, - 'hostspec' => $host, - 'charset' => 'AL32UTF8', + 'phptype' => 'oci8', + 'username' => $user, + 'password' => $pass, + 'service' => $name, + 'hostspec' => $host, + 'charset' => 'AL32UTF8', ); break; case 'mssql': |