Author: jmb
Date: Sun Feb 11 23:21:05 2007
New Revision: 3180
URL:
http://svn.semichrome.net?rev=3180&view=rev
Log:
Fix handling of % signs in textarea initial value. (Fixes 1617123)
Modified:
trunk/netsurf/render/box_construct.c
Modified: trunk/netsurf/render/box_construct.c
URL:
http://svn.semichrome.net/trunk/netsurf/render/box_construct.c?rev=3180&a...
==============================================================================
--- trunk/netsurf/render/box_construct.c (original)
+++ trunk/netsurf/render/box_construct.c Sun Feb 11 23:21:05 2007
@@ -2476,7 +2476,7 @@
if (ctxt) {
string = current = xmlStringDecodeEntities(ctxt,
buf->content,
- XML_SUBSTITUTE_REF | XML_SUBSTITUTE_PEREF,
+ XML_SUBSTITUTE_REF,
0, 0, 0);
xmlFreeParserCtxt(ctxt);
}