Lines 367-373
for (keys %$params) {
Link Here
|
367 |
my @pasarParam = $cgi->multi_param($_); |
367 |
my @pasarParam = $cgi->multi_param($_); |
368 |
for my $paramValue(@pasarParam) { |
368 |
for my $paramValue(@pasarParam) { |
369 |
$pasarParams .= '&' if ($j > 0); |
369 |
$pasarParams .= '&' if ($j > 0); |
370 |
$pasarParams .= $_ . '=' . uri_escape_utf8($paramValue); |
370 |
$pasarParams .= uri_escape_utf8($_) . '=' . uri_escape_utf8($paramValue); |
371 |
$j++; |
371 |
$j++; |
372 |
} |
372 |
} |
373 |
} |
373 |
} |
374 |
- |
|
|