On 10/27/05, Mark Knoop <[EMAIL PROTECTED]> wrote:

> require Exporter;
> my @ISA = qw(Exporter);
> my @EXPORT = qw(GetDBHandle);

@ISA and @EXPORT are going to be used outside of the file,
so they should be C<our> instead of C<my>, if not

   use vars qw/@ISA @EXPORT/;

_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to