Skip Menu |

This queue is for tickets about the CGI-Untaint CPAN distribution.

Report information
The Basics
Id: 2140
Status: resolved
Priority: 0/
Queue: CGI-Untaint

People
Owner: Nobody in particular
Requestors: drew [...] drewtaylor.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.90
Fixed in: (no value)



Subject: test dependency on 5.6+
t/apache.t uses "our". This breaks the tests for me since I'm stuck using 5.005. Here's a patch that fixes it. It's dead simple. :-) --- t/apache.t.orig Fri Feb 21 15:15:07 2003 +++ t/apache.t Fri Feb 21 15:15:38 2003 @@ -6,7 +6,7 @@ use Test::More tests => 20; -our $data = { +my $data = { name => "Tony Bowden", age => 110, };
Show quoted text
> t/apache.t uses "our". This breaks the tests for me since I'm stuck > using 5.005. Here's a patch that fixes it. It's dead simple. :-)
Thanks, applied. Tony