Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-05-08 18:18:24 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-06-14 15:16:02 +0400
commitd6878f5551d8524aa1ef57cfa0afe811f81d3fa0 (patch)
treead81a93384da6b26513be36442f24d0b563f3b70 /lib/db.php
parentbe534fecf401761bdc6ecae8d985ace49e1cb5bd (diff)
use to_char only for oracle, whitespace
Diffstat (limited to 'lib/db.php')
-rw-r--r--lib/db.php12
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':