From: Brian Pane Date: Sat, 29 Dec 2001 21:34:04 +0000 (+0000) Subject: Fix to make xbithack work again X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f004818062379320524ab8ad9764820424726bf;p=apache Fix to make xbithack work again git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92652 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index b135f09e95..045576dcf9 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -3220,7 +3220,7 @@ static int include_fixup(request_rec *r) return DECLINED; } - if (!r->handler || strcmp(r->handler, "text/html")) { + if (r->handler && strcmp(r->handler, "text/html")) { return DECLINED; } }