From 037f3362b79003358ac5ff25a6732c2a14502de2 Mon Sep 17 00:00:00 2001 From: he Date: Tue, 5 Aug 2008 11:33:24 +0000 Subject: Actually add the patch/patch-aa file: Update from version 0.9.5.1 to 0.9.5.2. Pkgsrc change: o Add in a patch from CPAN GNATS # 7583. Upstream change (not recorded in Changes): o Check for undefinedness before using it as a value. --- www/p5-HTTP-Request-Form/patches/patch-aa | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 www/p5-HTTP-Request-Form/patches/patch-aa diff --git a/www/p5-HTTP-Request-Form/patches/patch-aa b/www/p5-HTTP-Request-Form/patches/patch-aa new file mode 100644 index 00000000000..ca5b24322e9 --- /dev/null +++ b/www/p5-HTTP-Request-Form/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2008/08/05 11:33:24 he Exp $ + +From CPAN PR#7583. + +--- Form.pm.orig 2001-12-01 12:05:54.000000000 +0100 ++++ Form.pm +@@ -437,7 +437,7 @@ sub checkbox_ischecked { + + sub is_checkbox { + my ($self, $name) = @_; +- if (defined($self->{'checkboxstate'}->($name))) { ++ if (defined($self->{'checkboxstate'}->{$name})) { + return 1; + } else { + return undef; -- cgit v1.2.3