svn commit: r1935931 - httpd/httpd/trunk/modules/filters
[email protected] Mon, 06 Jul 2026 10:04:52 -0000
| Newsgroups | gmane.comp.apache.cvs |
|---|---|
| Message-ID | <178333229265.396795.14151437859588744462@svn03-he-fi> |
Author: jorton
Date: Mon Jul 6 10:04:52 2026
New Revision: 1935931
Log:
* modules/filters/mod_proxy_html.c (pcomment): Don't dump content
when printing a comment. (regression in r1934975)
Fixes: 9dc00bf22922b805d780f403132d2e35a99ced93
Github: closes #681
Modified:
httpd/httpd/trunk/modules/filters/mod_proxy_html.c
Modified: httpd/httpd/trunk/modules/filters/mod_proxy_html.c
==============================================================================
--- httpd/httpd/trunk/modules/filters/mod_proxy_html.c Mon Jul 6 10:03:57 2026 (r1935930)
+++ httpd/httpd/trunk/modules/filters/mod_proxy_html.c Mon Jul 6 10:04:52 2026 (r1935931)
@@ -337,7 +337,6 @@ static void pcomment(void *ctxt, const x
ap_fputs(ctx->f->next, ctx->bb, "<!--");
AP_fwrite(ctx, chars, strlen(chars), 1);
ap_fputs(ctx->f->next, ctx->bb, "-->");
- dump_content(ctx);
}
}
static void pendElement(void *ctxt, const xmlChar *uname)