If I enter You thought you'd get **feedback**?? nope :P in the feedback field, and click save, the following data is sent to the studio_submit handler:
{
...
"feedback": "You thought you'd get **feedback**jQuery22405292451734679361_1757467526339 nope :P",
...
}
It does save the data, and the studio_submit request responds with a 200 response. However, the frontend doesn't like it, and I get the "Studio's having trouble saving your work" message, and the edit modal doesn't close.
Looks like this is related to https://api.jquery.com/Jquery.ajax/#jQuery-ajax-settings .
We need to stop this happening, as this is confusing if a user wants to use double question marks (??) in the text.
If I enter
You thought you'd get **feedback**?? nope :Pin the feedback field, and click save, the following data is sent to the studio_submit handler:It does save the data, and the studio_submit request responds with a 200 response. However, the frontend doesn't like it, and I get the "Studio's having trouble saving your work" message, and the edit modal doesn't close.
Looks like this is related to https://api.jquery.com/Jquery.ajax/#jQuery-ajax-settings .
We need to stop this happening, as this is confusing if a user wants to use double question marks (
??) in the text.