Skip Menu |

This queue is for tickets about the mod_perl CPAN distribution.

Report information
The Basics
Id: 2190
Status: resolved
Priority: 0/
Queue: mod_perl

People
Owner: pgollucci [...] p6m7g8.com
Requestors: hendrik [...] ldl48.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.27
Fixed in: (no value)



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.
r177816 | gozer | 2003-10-06 10:02:44 -0700 (Mon, 06 Oct 2003) | 3 lines Fix a pod type on Util.pm reported by hendrik@ldl48.org here: http://rt.cpan.org/NoAuth/Bug.html?id=2190 This should be in 1.30 when it gets released