Patches: - HTMLparser.c: htmlCheckParagraph to check
Patches:
- HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue,
reported by Jonas Borgström
- nanohttp.c: Applied Bjorn Reese' IPV6 first patch
Daniel
diff --git a/HTMLparser.c b/HTMLparser.c
index a494132..a395c7c 100644
--- a/HTMLparser.c
+++ b/HTMLparser.c
@@ -925,6 +925,8 @@
ctxt->sax->startElement(ctxt->userData, BAD_CAST"p", NULL);
return(1);
}
+ if (!htmlOmittedDefaultValue)
+ return;
for (i = 0; htmlNoContentElements[i] != NULL; i++) {
if (xmlStrEqual(tag, BAD_CAST htmlNoContentElements[i])) {
#ifdef DEBUG