]> granicus.if.org Git - apache/commitdiff
mod_include: When +Includes is not set and we disable mod_include, tell
authorGraham Leggett <minfrin@apache.org>
Tue, 2 Oct 2012 17:02:44 +0000 (17:02 +0000)
committerGraham Leggett <minfrin@apache.org>
Tue, 2 Oct 2012 17:02:44 +0000 (17:02 +0000)
the administrator where this happened.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1393033 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_include.c

index 3d6e8e61d78322bcb912ac3440616bb4ec92ecaa..19bcae25408e95179af507a9fd716fd7bf35281c 100644 (file)
@@ -3819,7 +3819,7 @@ static apr_status_t includes_filter(ap_filter_t *f, apr_bucket_brigade *b)
     if (!(ap_allow_options(r) & OPT_INCLUDES)) {
         ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(01374)
                       "mod_include: Options +Includes (or IncludesNoExec) "
-                      "wasn't set, INCLUDES filter removed");
+                      "wasn't set, INCLUDES filter removed: %s", r->uri);
         ap_remove_output_filter(f);
         return ap_pass_brigade(f->next, b);
     }