You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In XMLWriter.m
The escape sequence for quote is
written as
[self write:@"&qout;"];
Where it should be:
[self write:@"""];
See
http://www.w3.org/TR/xml11/
To allow attribute values to contain both single and double quotes, the
apostrophe or single-quote character (') may be represented as "'", and
the double-quote character (") as """.
Original issue reported on code.google.com by [email protected] on 18 Mar 2011 at 9:40
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 18 Mar 2011 at 9:40The text was updated successfully, but these errors were encountered: