Kim Goldov wrote:
Philippe M. Chiasson wrote:

Does the following patch solve the problem for you ?

? make.log Index: lib/Apache/PerlSections.pm =================================================================== RCS file: /home/cvs/modperl-2.0/lib/Apache/PerlSections.pm,v retrieving revision 1.5 diff -u -I$Id -r1.5 PerlSections.pm --- lib/Apache/PerlSections.pm 9 Jul 2004 08:01:20 -0000 1.5 +++ lib/Apache/PerlSections.pm 6 Aug 2004 22:30:01 -0000 @@ -172,7 +172,12 @@ $self->add_config("$name $$entry\n"); } elsif ($type eq 'ARRAY') { - $self->add_config("$name @$entry\n"); + if (grep { ref($_) } @$entry) { + $self->dump_entry($name, $_) for @$entry; + } + else { + $self->add_config("$name @$entry\n"); + } } elsif ($type eq 'HASH') { $self->dump_hash($name, $entry);



Philippe, I applied the patch you included in your earlier posting. It fixed the problem for me.

Great, the fix made it into CVS as well, so next release will have this problem fixed for good.

Thanks for your help.

--Kim



-- -------------------------------------------------------------------------------- Philippe M. Chiasson m/gozer\@(apache|cpan|ectoplasm)\.org/ GPG KeyID : 88C3A5A5 http://gozer.ectoplasm.org/ F9BF E0C2 480E 7680 1AE5 3631 CB32 A107 88C3A5A5

Attachment: signature.asc
Description: OpenPGP digital signature



Reply via email to