We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See #194 #198
We have slashes in category names (something like Valves 1/2")
Valves 1/2"
Describe the solution you'd like
In https://github.com/techdivision/import/blame/master/src/Assembler/CategoryAssembler.php#L152 we should use a CSV implode instead of a simple implode.
Describe alternatives you've considered
Removing slashes? but that is not an option :)
Additional context
If we have such a category tree
This would lead twice to the key Foo/Bar, for ID = 2 as well as ID = 3, so the array indexes collide and the ID = 2 will be overwritten.
Foo/Bar
The text was updated successfully, but these errors were encountered:
@DanieliMi will try to use the csvSerializier here to add escaping
Sorry, something went wrong.
techdivision/import-cli-simple@c6770ba
No branches or pull requests
See #194 #198
We have slashes in category names (something like
Valves 1/2"
)Describe the solution you'd like
In https://github.com/techdivision/import/blame/master/src/Assembler/CategoryAssembler.php#L152 we should use a CSV implode instead of a simple implode.
Describe alternatives you've considered
Removing slashes? but that is not an option :)
Additional context
If we have such a category tree
This would lead twice to the key
Foo/Bar
, for ID = 2 as well as ID = 3, so the array indexes collide and the ID = 2 will be overwritten.The text was updated successfully, but these errors were encountered: