Remove ',' from date in CSV export
SVN revision: 2040
This commit is contained in:
+4
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user