Bugzilla – Bug 3210
can't use double quotes (") in Server Settings -> Formatting -> Title Format
Last modified: 2008-09-15 14:39:24 UTC
If you put a double quote in the field and click change, everything after the double quote is lost.
Change 7063 We weren't html escaping our form values, so when a quote was used it resulted in stuff like value="BLAH "BLAH"", which isn't valid. So, the fix was to run the values through the html filter to change " into ". For good measure, also run it through the utf8decode filter, like setup_input_txt.html used.