PR 49616
diagnosed by Andrey Chernov
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@965582
13f79535-47bb-0310-9956-
ffa450edef68
*) mod_rewrite: Remove superfluous EOL from rewrite logging. [Rainer Jung]
+ *) mod_include: recognise "text/html; parameters" as text/html
+ PR 49616 [Andrey Chernov <ache nagual.pp.ru>]
+
Changes with Apache 2.3.6
*) SECURITY: CVE-2009-3555 (cve.mitre.org)
return DECLINED;
}
- if (!r->content_type || strcmp(r->content_type, "text/html")) {
+ if (!r->content_type || strncmp(r->content_type, "text/html", 9)) {
return DECLINED;
}
}