From e57a90e91c406ef5a40505959bd0d4ec64ecf164 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 11 Feb 2007 23:21:05 +0000 Subject: Fix handling of % signs in textarea initial value. (Fixes 1617123) svn path=/trunk/netsurf/; revision=3180 --- render/box_construct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render/box_construct.c b/render/box_construct.c index c7c91fee3..dde44aa56 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -2476,7 +2476,7 @@ bool box_textarea(BOX_SPECIAL_PARAMS) if (ctxt) { string = current = xmlStringDecodeEntities(ctxt, buf->content, - XML_SUBSTITUTE_REF | XML_SUBSTITUTE_PEREF, + XML_SUBSTITUTE_REF, 0, 0, 0); xmlFreeParserCtxt(ctxt); } -- cgit v1.2.3