Autocomplete - minor bug with quotation marks

I noticed a problem displaying strings which include double quotation marks. This is due to a typo in this line, in dmxAutocomplete.js:

return t = (t = (t = (t = t.replace(/&/g, "&amp;")).replace(/"/g, "&qout;")).replace(/</g, "&lt;")).replace(/>/g, "&gt;")

&qout should be &quot

2 Likes