You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jzakotnik I would maybe suggest to forbid characters like "&" in the names of project, subprojects etc because we have to create helper function for that and basically paste it everywhere where the name with "&" is used across the app. The correct but more time consuming solution would be to add form validations to these forms so we can restrict user from entering these characters into these forms.
I don't know. :) I do know that it is a HTML entity and the problem is that it is invalid to write "&" in a text, in XML it even breaks the validation of the file. Honestly there is not one correct approach to this. The most straight forward solution is as I said. To create form validation and forbid these special characters. Ampersand should always be written as "& ;" so it translates to "&". In our app it does not work because the rule is applied twice, the double conversion error. At some point when text was entered, ampersand got converted to the sequence "& ;". It is not ampersand itself that is the problem. It is the website that takes user's input and does not always convert it correctly.
The text was updated successfully, but these errors were encountered: