> I have this line in my Embperl code, calling on a routine defined in
> constants.epl in EmbperlObject.
>if ($req->{check_email_addr} ($fdat{User_Email})) {
>
If check_email_addr is a code ref, use
if (&{$req->{check_email_addr}} ($fdat{User_Email})) {
if this is not
I have this line in my Embperl code, calling on a routine defined in
constants.epl in EmbperlObject.
if ($req->{check_email_addr} ($fdat{User_Email})) {
I get this error back:
[515]ERR: 24: Line 9: Error in Perl code: syntax error at //htdocs/userpass.epl
line 57, near "} ("
Apa