Code review comment for lp:~googol-deactivatedaccount/openlp/bug-863376

Revision history for this message
Andreas Preikschat (googol-deactivatedaccount) wrote :

> What happens if you add a song with "&" in it?

All critical characters are escaped:
>>> import cgi
>>> cgi.escape(u'aaa < bbb > ccc & ddd')
u'aaa &lt; bbb &gt; ccc &amp; ddd'

« Back to merge proposal