On Thu, 2002-03-14 at 10:46, [EMAIL PROTECTED] wrote:

> code:
> --------------------------------------------------------------------------------
> |      return %Actions::Vars::config{$conf};                 |
> 
>-----------------------------------------------------------------------------------------

You are not access the hash with the proper syntax:

    %Actions::Vars::config

refers to the entire config hash, while:

    $Actions::Vars::config{$conf}

will return you a value from that hash.  Notice the leading '%' has been
replaced with a '$'.  Read the 'perldsc' man page:

    man perldsc

G

Reply via email to