-*- coding: utf-8 -*-
Changes with Apache 2.4.0
+ *) mod_mime: Don't arbitrarily bypass AddOutputFilter during a ProxyPass,
+ but then allow AddOutputFilter during a RewriteRule [P]. Make mod_mime
+ behave identically in both cases. PR52342. [Graham Leggett]
+
*) Move ab, logresolve, httxt2dbm and apxs to bin from sbin, along with
corresponding man pages. [Graham Leggett]
* setting redundant filters. 2, we insert these in the types
* config hook, which may be too early (dunno.)
*/
- if (exinfo->input_filters && r->proxyreq == PROXYREQ_NONE) {
+ if (exinfo->input_filters) {
const char *filter, *filters = exinfo->input_filters;
while (*filters
&& (filter = ap_getword(r->pool, &filters, ';'))) {
found = 1;
}
}
- if (exinfo->output_filters && r->proxyreq == PROXYREQ_NONE) {
+ if (exinfo->output_filters) {
const char *filter, *filters = exinfo->output_filters;
while (*filters
&& (filter = ap_getword(r->pool, &filters, ';'))) {