in reply to Re: Passing multiple hashes?
in thread Passing multiple hashes?

Thanks, that's just what I needed. Unfortunatly, when I try it exactly that way, I occationally get the error:

Can't use an undefined value as a HASH reference at A_user.pm line 54.
Where line 54 is:
my %error = %$eref;
I managed to avoid this by just using the refs directly:
$$error_ref{'any'};

- Monolith