mirror of
https://framagit.org/framasoft/framadate/framadate
synced 2026-01-23 02:14:06 +00:00
[CSV] Quote columns headers to fix #571.
This commit is contained in:
parent
881b29260a
commit
327c0fbdd3
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ if ($poll->format === 'D') {
|
|||
} else {
|
||||
echo ',';
|
||||
foreach ($slots as $slot) {
|
||||
echo Utils::markdown($slot->title, true) . ',';
|
||||
echo Utils::csvEscape(Utils::markdown($slot->title, true)) . ',';
|
||||
}
|
||||
echo "\r\n";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue