Subject: | _check_profile_syntax call as method |
Hello,
I was wondering if you could apply this small patch to
lib/Data/FormValidator.pm so _check_profile_syntax is called as a method
then I can override the method in one of my modules.
Thanks!
Rob
Subject: | FormValidator.diff |
348c348
< $self->_check_profile_syntax($profile);
---
> _check_profile_syntax($profile);
914c914
< my ($self,$profile) = @_;
---
> my $profile = shift;