Problem with saving the | character in all fields and in downloaded emails. This character is removed in the function:
Should the | sign be removed or is it a mistake?
Problem with saving the | character in all fields and in downloaded emails. This character is removed in the function:
Should the | sign be removed or is it a mistake?
line 541 '/[\x{00B0}|\x{00A9}]/u' # Degrees/Copyright
You can modify the regex to stop before the | character and continue after it. You’ll have to look at guides online on how to accomplish this. The other characters in that range do need to be removed.
Cheers.
I have already fixed this bug to remove only two characters:
line 541 : '/[\x{00B0}\x{00A9}]/u' # Degrees/Copyright
I wanted to know if the change will affect other functionalities. Thank you for your reply
Yes, you will encounter issues if you remove the other characters. However, I'm not 100% certain if removing |
will have any negative effects.
Cheers.