>
> BTW, to avoid confusion I'd prevent the import() function from being
> called in startup.pl by either
>
> use Config1 ();
> use Config2 ();
>
> or
>
> BEGIN {
> require Config1;
> require Config2;
> }
>
> TorstenThanks Torsten. So if I don't use them in the startup.pl, then no conflict will happen? Regards.
