whoops.  yeah, $subr->send_http_header won't work for the same reason
send_http_header() calls within run() do not.  you'll just need to
propagate subrequest info like so:

my $subr = $r->lookup_uri($uri);

$r->send_http_header($subr->content_type);

$subr->run;


Reply via email to