Hi,
I noticed that when a text field contains a hyphen (–
), it’s being converted to the HTML entity –
in the submission data, admin views, and CSV exports.
Example:
XPTO – LISBOA
becomes XPTO – LISBOA
We suspect the hyphen is being escaped with htmlentities()
or similar, either when saving to the database or when rendering the output.
Would it be possible to keep the original hyphen (–
) as-is?
Thanks!