Subject: | HTML::Widget::Constraint::DependOn should check for field existence |
We've had this local patch applied for quite some time. This changes the code to work as documented.
@@ -28,7 +28,7 @@
my @names = @{ $self->names };
my $first = shift @names;
- return [] if !$params->{$first};
+ return [] if !exists $params->{$first};
for my $name (@names) {
push @$results,