Skip to content

Commit

Permalink
Merge r1919247 from trunk:
Browse files Browse the repository at this point in the history
copy the trusted flag from the subrequest

Submitted By: covener
Reviewed By: covener, ylavic, gbechis


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1919249 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
covener committed Jul 15, 2024
1 parent 9967bf4 commit a7d24b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/http/http_request.c
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ AP_DECLARE(void) ap_internal_fast_redirect(request_rec *rr, request_rec *r)
r->args = rr->args;
r->finfo = rr->finfo;
r->handler = rr->handler;
ap_set_content_type_ex(r, rr->content_type, AP_REQUEST_IS_TRUSTED_CT(r));
ap_set_content_type_ex(r, rr->content_type, AP_REQUEST_IS_TRUSTED_CT(rr));
r->content_encoding = rr->content_encoding;
r->content_languages = rr->content_languages;
r->per_dir_config = rr->per_dir_config;
Expand Down

0 comments on commit a7d24b4

Please sign in to comment.