In lieu of a perhaps more elegant solution, this little patch makes
M::P::C (0.05) compatible with M::P::Authentication::UserSessionCookie
(1.7).
Bill
--
Bill Broomall
[EMAIL PROTECTED]
425-280-4232
Quantum Linux Laboratories http://www.quantumlinux.com
ACCELERATING Business with Linux Technology
Integration * Support * Development * Education
--- Component.pm 2004-10-16 14:17:02.000000000 -0700
+++ /usr/local/share/perl/5.8.4/Maypole/Plugin/Component.pm 2005-11-11 13:54:27.490718264 -0800
@@ -17,6 +17,8 @@
$self->parse_path;
$self->params( $url->query_form_hash );
$self->query( $r->params );
+ $self->headers_in($r->headers_in);
+ $self->headers_out($r->headers_out);
$self->handler_guts;
return $self->output;
}