X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlfaq9.pod;h=e643c3398129b3fb3b38e37be27375ffbbbbcb5d;hb=6d822dc4045278fb03135b2683bac92dba061369;hp=242bd49ff09a35baa21830d79dcb42165d2f8328;hpb=1577cd8083ce36a55c5a17443a5fe2c735f08e36;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlfaq9.pod b/pod/perlfaq9.pod index 242bd49..e643c33 100644 --- a/pod/perlfaq9.pod +++ b/pod/perlfaq9.pod @@ -1,6 +1,6 @@ =head1 NAME -perlfaq9 - Networking ($Revision: 1.7 $, $Date: 2002/01/28 04:17:27 $) +perlfaq9 - Networking ($Revision: 1.9 $, $Date: 2002/04/07 18:46:13 $) =head1 DESCRIPTION @@ -251,7 +251,7 @@ function to handle encoding. The best source of detailed information on URI encoding is RFC 2396. Basically, the following substitutions do it: - s/([^\w()'*~!.-])/sprintf '%%%02x', $1/eg; # encode + s/([^\w()'*~!.-])/sprintf '%%%02x', ord $1/eg; # encode s/%([A-Fa-f\d]{2})/chr hex $1/eg; # decode