Remove ',' from date in CSV export

SVN revision: 2040
This commit is contained in:
2008-02-11 21:32:32 +00:00
parent f54fe5f329
commit f3a0adec93
+4 -1
View File
@@ -19986,7 +19986,10 @@ void show_elog_list(LOGBOOK * lbs, int past_n, int last_n, int page_n, BOOL defa
else
rsprintf(";");
rsprintf("%s", date);
strlcpy(str, date, sizeof(str));
while (strchr(str, ','))
*strchr(str, ',') = ' ';
rsprintf(str);
if (strieq(mode, "CSV1"))
rsprintf(",");
else