Subject: | Typo in POD |
In the unescape_uri_info section of the Apache::Util POD, there is a typo in the parameter hash. See below.
Example:
$string = $r->uri->query;
my %data = map { Apache::Util::unescape_uri_info($_) }
split /[=&]/, $string, -1;
This would correctly translate the query string
``name=Fred+Flintstone&town=Bedrock'' into the hash:
data => 'Fred Flintstone',
town => 'Bedrock
End paste.
The data passed as parameter should result in
name => 'Fred Flintstone',
town => 'Bedrock
The eagle book has an extra bug (more severe), it imports 'unescape_info' instead of 'unescape_uri_info'. Reported to ORA.