Hide
original bugid: #6162
In MMObjectBuilder, the html() function does strange escaping of ampersands. First the '<' and '>' characters are escaped, then the ampersand. This leads to escaping the ampersand that was just inserted, leaving the '<' and '>' as '<' and '>'
Simple fix: just moved the ampersand-escaping to the top.
Show
original bugid: #6162
In MMObjectBuilder, the html() function does strange escaping of ampersands. First the '<' and '>' characters are escaped, then the ampersand. This leads to escaping the ampersand that was just inserted, leaving the '<' and '>' as '<' and '>'
Simple fix: just moved the ampersand-escaping to the top.
In MMObjectBuilder, the html() function does strange escaping of ampersands. First the '<' and '>' characters are escaped, then the ampersand. This leads to escaping the ampersand that was just inserted, leaving the '<' and '>' as '&lt;' and '&gt;'