On Jul 3, Michael Dube said:

>I tried scoping the variable to the parent by calling it
>parent::$log->write... no luck.
>       parent::$log->write("Got Here");

Variables are made up of a sigil ($, @, %, &, *), an optional namespace
(CGI::, main::, :: (which is main::)), and the symbol name (foo, bar,
size).

You want $parent::log.

-- 
Jeff "japhy" Pinyan      [EMAIL PROTECTED]      http://www.pobox.com/~japhy/
I am Marillion, the wielder of Ringril, known as Hesinaur, the Winter-Sun.
Are you a Monk?  http://www.perlmonks.com/     http://forums.perlguru.com/
Perl Programmer at RiskMetrics Group, Inc.     http://www.riskmetrics.com/
Acacia Fraternity, Rensselaer Chapter.         Brother #734
**      Manning Publications, Co, is publishing my Perl Regex book      **

Reply via email to