diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-08-05 23:30:26 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-08-05 23:30:26 -0400 |
commit | 5ea64c055392281a0e8cabbd08692c41220bb9fc (patch) | |
tree | 5a3a0513dc426c6694a39c25596b9ac05bad1c4d /src | |
parent | bf2048dd083d17dde1b00b50efcb8e694a1b383c (diff) |
Fixed a bug with OPTION element (it was parsing entities twice)
Diffstat (limited to 'src')
-rw-r--r-- | src/form.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/form.cc b/src/form.cc index 751f5143..1575dfe4 100644 --- a/src/form.cc +++ b/src/form.cc @@ -1933,7 +1933,6 @@ static void Html_option_finish(DilloHtml *html) input->type == DILLO_HTML_INPUT_SEL_LIST) { DilloHtmlOption *option = input->select->getCurrentOption (); - option->content = - a_Html_parse_entities(html, html->Stash->str, html->Stash->len); + option->content = dStrndup(html->Stash->str, html->Stash->len); } } |