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.

Thanks for your help.

--Kim


-- 
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

Reply via email to