I'm running a script with strict on under 5.6.0 (on Windows) and
get the following error message:
Variable "$LANG" is not imported at legal_services.pl line 463.
line 463 is:
print style_chooser("$$LANG->{'welcome'}"), ' ',roman(uc($cgi->remote_user()));
$LANG is a reference to a reference to a hash that contains strings
in the language selected by the user. $LANG is defined with an 'our'
statement.
What does the error message mean and how can I correct it? Where
can I find explanations of error messages in the docs?
Thanks,
Michael Fahey