in reply to Debugging AutoLoader

I don't know how to really solve your problem but you might try sticking an empty DESTROY in HTML::FillInForm:

   sub DESTROY {}

That should stop it from using the inherited AUTOLOAD.

-sam

Replies are listed 'Best First'.
Re^2: Debugging AutoLoader
by knowmad (Monk) on Feb 03, 2005 at 23:45 UTC

    Thanks for the suggestion Sam. I suppose adding an emtpy sub is better than stomping all over the inheritance just in case there is a purpose for it down at the level of HTML::FillInForm.

    Good news! It works.