Bug 363029 - "local patch on registry on webtools.m.o... do we need it?" (commit just the comment portion)

This commit is contained in:
reed%reedloden.com 2006-12-07 06:12:16 +00:00
Родитель 31014a3f09
Коммит 0085c369cd
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -48,7 +48,9 @@ sub split_cgi_args {
sub url_encode {
my ($s) = @_;
# First change all percent signs since later encodings use them as escapes.
$s =~ s/\%/\%25/g;
$s =~ s/\=/\%3d/g;
$s =~ s/\?/\%3f/g;
$s =~ s/ /\%20/g;