in reply to Blank lines in ini file and Config::Simple

At bschmer's request, here is a demo:
#!/usr/bin/perl -w use Config::Simple; my $cfg = new Config::Simple( "testini.dat" ); die "Config file failure" if not defined $cfg; %config = $cfg->vars(); my $bar = $cfg->param("FOO.Bar"); my $baz = $cfg->param("FOO.Baz"); print "<$bar>, <$baz>\n";
And the data:
[FOO] Bar=hello Baz= Boo=
$bar is printed correctly, but $baz shows up as ARRAY(..).

--traveler