mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
quick handler now runs on subrequests as well
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92862 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -285,16 +285,13 @@ void ap_process_request(request_rec *r)
|
||||
* to enable the quick handler to make decisions based on config
|
||||
* directives in Location blocks.
|
||||
*/
|
||||
access_status = ap_run_quick_handler(r);
|
||||
if (access_status == DECLINED) {
|
||||
access_status = ap_process_request_internal(r);
|
||||
if (access_status == OK) {
|
||||
access_status = ap_invoke_handler(r);
|
||||
}
|
||||
else if (access_status == DONE) {
|
||||
/* e.g., something not in storage like TRACE */
|
||||
access_status = OK;
|
||||
}
|
||||
access_status = ap_process_request_internal(r);
|
||||
if (access_status == OK) {
|
||||
access_status = ap_invoke_handler(r);
|
||||
}
|
||||
else if (access_status == DONE) {
|
||||
/* e.g., something not in storage like TRACE */
|
||||
access_status = OK;
|
||||
}
|
||||
|
||||
if (access_status == OK) {
|
||||
|
Reference in New Issue
Block a user