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-05-22 13:59:07 +0200 |
commit | cbd5eb9a1a77a5bcbcb843be21e95bccec26dedb (patch) | |
tree | f97cca1e2d9363d4e5f60d372f1dc0a6c6ede029 /lib/db.php | |
parent | eceb3c8ed5f3068808bc8fc5ceec5fda1ac50db9 (diff) | |
download | nextcloud-server-cbd5eb9a1a77a5bcbcb843be21e95bccec26dedb.tar.gz nextcloud-server-cbd5eb9a1a77a5bcbcb843be21e95bccec26dedb.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 5b45f81f998..61836551833 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': |