Closed mzur closed 2 years ago
This fixes the following cases:
A string such as This - That was split in the middle although it should remain intact.
This - That
Single quotes such as 'This - That' were not removed although they are used by the YAML parser to quote strings that include special characters.
'This - That'
The regexes of the PHP and JS code now do the same thing, too.
Kudos, SonarCloud Quality Gate passed!
0 Bugs 0 Vulnerabilities 0 Security Hotspots 0 Code Smells
No Coverage information 0.0% Duplication
Thanks, it will be included in the next release 👍
This fixes the following cases:
A string such as
This - That
was split in the middle although it should remain intact.Single quotes such as
'This - That'
were not removed although they are used by the YAML parser to quote strings that include special characters.The regexes of the PHP and JS code now do the same thing, too.