Greetings, I use a CPAN module in my code that uses $r->method and $r->method_number to set the request method and method numbers. When I upgraded to 1.99_15-dev the module can no longer set the method and number, only get it (1). Are the set methods are deprecated, or are they in the works still? If they are deprecated I will refactor the module for 1.99_15.
Thanks for your time, Fred (1) Existing code for reference which works under 1.99_14 but not 1.99_15: sub _convert_to_get { ... $r->method('GET'); $r->method_number(M_GET); ... } -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html