in reply to incorrect use of URI::Escape?
If the values are more than one, you get multiple parameters passed. It's this second parameter that's causing fits, and can be a security leak!uri_escape($values->{$_})
Change that to:
(I think).uri_escape(scalar $values->{$_})
-- Randal L. Schwartz, Perl hacker
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: •Re: incorrect use of URI::Escape?
by tachyon (Chancellor) on Apr 13, 2002 at 17:42 UTC | |
|
Re: •Re: incorrect use of URI::Escape?
by Anonymous Monk on Apr 13, 2002 at 17:59 UTC | |
|
Re: •Re: incorrect use of URI::Escape?
by Juerd (Abbot) on Apr 13, 2002 at 17:59 UTC |