- 🇧🇪Belgium stijnstroobants Leuven
Created a new patch. Hopefully this will solve the issue for the other pages.
Hard coded delimiter inside the Action Plugin Export User.
Go inside social_user_export directory.
src/Plugin/Action/ExportUser.php
/**
* {@inheritdoc}
*/
public function executeMultiple(array $entities) {
.
.
$csv = Writer::createFromPath($file_path, 'w');
$csv->setDelimiter(';');
$csv->setEnclosure('"');
$csv->setEscape('\\');
.
.
For Windows Excel Users this is an issue and for the future It might be better to give users or the admin the choice to define the delimiter.
Please expose a action setting to let users choose the delimiter.
For now I will attach a patch that changes the delimiter from "," to ";"
Active
9.6
Other
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Created a new patch. Hopefully this will solve the issue for the other pages.