Skip Menu |

This queue is for tickets about the HTML-FormFu CPAN distribution.

Report information
The Basics
Id: 43096
Status: resolved
Priority: 0/
Queue: HTML-FormFu

People
Owner: Nobody in particular
Requestors: lugdunum [...] redlemon.nl
Cc: lyon.lemmens [...] redlemon.nl
AdminCc:

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



CC: lyon.lemmens [...] redlemon.nl
When given a callback sub name in the form.yml file, CallbackOnce fails with: Can\'t use string ("EMT::Constraint::email") as a subroutine ref while "strict refs" Comparing the Callback and CallbackOnce sources: CallbackOnce: my $ok = eval { $callback->( $value, $params ) }; Callback: no strict 'refs'; my $ok = $callback->( $value, $params ); Now I wonder of both should actually be: no strict 'refs'; my $ok = eval { $callback->( $value, $params ) }; I've made that change locally to both modules and it appears to work -- Lyon
Thanks. I've fixed this is svn. It'll be included in the next cpan release.