View | Details | Raw Unified | Return to bug 52648
Collapse All | Expand All

(-)modules/http/http_request.c (-1 / +1 lines)
Lines 197-203 AP_DECLARE(void) ap_die(int type, request_rec *r) Link Here
197
                                             "error-notes")) != NULL) {
197
                                             "error-notes")) != NULL) {
198
                apr_table_setn(r->subprocess_env, "ERROR_NOTES", error_notes);
198
                apr_table_setn(r->subprocess_env, "ERROR_NOTES", error_notes);
199
            }
199
            }
200
            r->method = apr_pstrdup(r->pool, "GET");
200
            r->method = "GET";
201
            r->method_number = M_GET;
201
            r->method_number = M_GET;
202
            ap_internal_redirect(custom_response, r);
202
            ap_internal_redirect(custom_response, r);
203
            return;
203
            return;
(-)modules/generators/mod_asis.c (-1 / +1 lines)
Lines 70-76 static int asis_handler(request_rec *r) Link Here
70
        /* This redirect needs to be a GET no matter what the original
70
        /* This redirect needs to be a GET no matter what the original
71
         * method was.
71
         * method was.
72
         */
72
         */
73
        r->method = apr_pstrdup(r->pool, "GET");
73
        r->method = "GET";
74
        r->method_number = M_GET;
74
        r->method_number = M_GET;
75
75
76
        ap_internal_redirect_handler(location, r);
76
        ap_internal_redirect_handler(location, r);
(-)modules/generators/mod_cgi.c (-1 / +1 lines)
Lines 993-999 static int cgi_handler(request_rec *r) Link Here
993
            /* This redirect needs to be a GET no matter what the original
993
            /* This redirect needs to be a GET no matter what the original
994
             * method was.
994
             * method was.
995
             */
995
             */
996
            r->method = apr_pstrdup(r->pool, "GET");
996
            r->method = "GET";
997
            r->method_number = M_GET;
997
            r->method_number = M_GET;
998
998
999
            /* We already read the message body (if any), so don't allow
999
            /* We already read the message body (if any), so don't allow
(-)modules/generators/mod_cgid.c (-1 / +1 lines)
Lines 1593-1599 static int cgid_handler(request_rec *r) Link Here
1593
            /* This redirect needs to be a GET no matter what the original
1593
            /* This redirect needs to be a GET no matter what the original
1594
             * method was.
1594
             * method was.
1595
             */
1595
             */
1596
            r->method = apr_pstrdup(r->pool, "GET");
1596
            r->method = "GET";
1597
            r->method_number = M_GET;
1597
            r->method_number = M_GET;
1598
1598
1599
            /* We already read the message body (if any), so don't allow
1599
            /* We already read the message body (if any), so don't allow
(-)modules/arch/win32/mod_isapi.c (-1 / +1 lines)
Lines 894-900 static int APR_THREAD_FUNC regfnServerSupportFunct Link Here
894
        }
894
        }
895
895
896
        /* Reset the method to GET */
896
        /* Reset the method to GET */
897
        r->method = apr_pstrdup(r->pool, "GET");
897
        r->method = "GET";
898
        r->method_number = M_GET;
898
        r->method_number = M_GET;
899
899
900
        /* Don't let anyone think there's still data */
900
        /* Don't let anyone think there's still data */

Return to bug 52648