diff --git a/modules/experimental/mod_charset_lite.c b/modules/experimental/mod_charset_lite.c index a2de2cd493..08440557ee 100644 --- a/modules/experimental/mod_charset_lite.c +++ b/modules/experimental/mod_charset_lite.c @@ -820,6 +820,9 @@ static apr_status_t xlate_out_filter(ap_filter_t *f, apr_bucket_brigade *bb) } } + /* catch proxy requests */ + if (f->r->proxyreq) return DECLINED; + /* Opening the output translation (this used to be done in the fixup hook, * but that was too early: a subsequent type modification, e.g., by a * CGI script, would go unnoticed. Now we do it in the filter itself.)