summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2006-10-29 22:18:02 +0100
committerOliver Tappe2006-10-29 22:18:02 +0100
commit76b0e83d5c21d2671bea5864d54b28ca74b00dba (patch)
tree2ba3ef82316726842990568885d8b1eb81a2bca8 /config-db
parent* type problem in date determination code. (diff)
downloadcore-76b0e83d5c21d2671bea5864d54b28ca74b00dba.tar.gz
core-76b0e83d5c21d2671bea5864d54b28ca74b00dba.tar.xz
core-76b0e83d5c21d2671bea5864d54b28ca74b00dba.zip
* fixed linebreak problem, now we use '\x0a' only, in order
to be compatible with oocalc. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@496 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rw-r--r--config-db/OpenSLX/MetaDB/CSV.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-db/OpenSLX/MetaDB/CSV.pm b/config-db/OpenSLX/MetaDB/CSV.pm
index d2e87309..bed7bbd9 100644
--- a/config-db/OpenSLX/MetaDB/CSV.pm
+++ b/config-db/OpenSLX/MetaDB/CSV.pm
@@ -53,7 +53,7 @@ sub connectConfigDB
or die _tr("unable to create db-datadir %s! (%s)\n",
$dbPath, $!);
}
- $dbSpec = "f_dir=$dbPath";
+ $dbSpec = "f_dir=$dbPath;csv_eol=\n;";
}
vlog 1, "trying to connect to CSV-database <$dbSpec>";
eval ('require DBD::CSV; 1;')