Do not delete the wrong data from HTML code when a "http-equiv" meta tag specifies a Content-Type behind any other "http-equiv" meta tag.
PR 56287 [Micha Lenk <micha lenk info>]
Submitted by: jailletc36
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1587693 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.4.10
+ *) mod_proxy_html: Do not delete the wrong data from HTML code when a
+ "http-equiv" meta tag specifies a Content-Type behind any other
+ "http-equiv" meta tag. PR 56287 [Micha Lenk <micha lenk info>]
+
*) mod_lua: Redesign how request record table access behaves,
in order to utilize the request record from within these tables
[Daniel Gruno]
2.4.x patch: trunk works (modulo CHANGES)
+1: trawick, jim, ylavic
- * mod_proxy_html: Do not delete the wrong data from HTML code when a
- "http-equiv" meta tag specifies a Content-Type behind any other "http-equiv"
- meta tag. PR 56287 [Micha Lenk <micha lenk info>]
- trunk patch: https://svn.apache.org/r1584878
- 2.4.x patch: trunk patch works (modulo CHANGES)
- +1: jailletc36, jim, ylavic
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
}
else if (!strncasecmp(header, "Content-Type", 12)) {
ret = apr_palloc(r->pool, sizeof(meta));
- ret->start = pmatch[0].rm_so;
- ret->end = pmatch[0].rm_eo;
+ ret->start = offs+pmatch[0].rm_so;
+ ret->end = offs+pmatch[0].rm_eo;
}
if (header && content) {
#ifndef GO_FASTER