DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=28198>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=28198 POSTed data is not send to handler when use "Action" and "AddHandler" ------- Additional Comments From [EMAIL PROTECTED] 2004-04-05 08:14 ------- I changed internal_internal_redirect() as following. --- src/main/http_request.c.internal-redirect 2004-04-05 16:53:23.000000000 +0900 +++ src/main/http_request.c 2004-04-05 17:00:00.000000000 +0900 @@ -1411,7 +1411,9 @@ new->no_cache = r->no_cache; new->expecting_100 = r->expecting_100; new->no_local_copy = r->no_local_copy; - new->read_length = r->read_length; /* We can only read it once */ + if (new->method_number != M_POST) { + new->read_length = r->read_length; /* We can only read it once */ + } new->vlist_validator = r->vlist_validator; #ifdef CHARSET_EBCDIC /* @@@ Is this correct? When is it used? */ new->ebcdic.conv_out= r->ebcdic.conv_out; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
