mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Remove ',' from date in CSV export
SVN revision: 2040
This commit is contained in:
parent
f54fe5f329
commit
f3a0adec93
@ -19986,7 +19986,10 @@ void show_elog_list(LOGBOOK * lbs, int past_n, int last_n, int page_n, BOOL defa
|
|||||||
else
|
else
|
||||||
rsprintf(";");
|
rsprintf(";");
|
||||||
|
|
||||||
rsprintf("%s", date);
|
strlcpy(str, date, sizeof(str));
|
||||||
|
while (strchr(str, ','))
|
||||||
|
*strchr(str, ',') = ' ';
|
||||||
|
rsprintf(str);
|
||||||
if (strieq(mode, "CSV1"))
|
if (strieq(mode, "CSV1"))
|
||||||
rsprintf(",");
|
rsprintf(",");
|
||||||
else
|
else
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user