interception points

I am creating a module in ContentBox that listens to postModuleLoad and postModuleUnload the load event fires fine, but the unload never seems to be fired.

//------------------------------------------------------------------------------------------------

//------------------------------------------------------------------------------------------------

public void function postModuleUnload(event, interceptData) {

writeDump(interceptData);

abort;

}

As you can see if it fires then it should stop and display the dumps, but this is not firing. Just don’t see why this would work on a module loading, but not a module unloading?