X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FCGI%2FMaypole.pm;h=ac0a4bac34111dd744564e65c2af4da8121168a1;hb=ddf79ab58ac40ec93ab6b333c048e2508075b9b4;hp=67cbf92f1c08e34325e1c767b5ffb845393632ff;hpb=21e814818fb4a6e59e4615c2dd1320016a9dc6f8;p=maypole.git diff --git a/lib/CGI/Maypole.pm b/lib/CGI/Maypole.pm index 67cbf92..ac0a4ba 100644 --- a/lib/CGI/Maypole.pm +++ b/lib/CGI/Maypole.pm @@ -30,7 +30,7 @@ sub parse_args { my (%vars) = $self->{cgi}->Vars; while ( my ( $key, $value ) = each %vars ) { my @values = split "\0", $value; - $vars{$key} = @values == 1 ? $values[0] : \@values; + $vars{$key} = @values <= 1 ? $values[0] : \@values; } $self->{params} = {%vars}; $self->{query} = {%vars};