Try changing the hook for the second plugin to postbit_display_complete. I believe the problem is that you're creating a globla variable called $someVariable, but the postbit template is evaled in a function, so your global isn't available.
I suppose another fix would be to use $GLOBALS['someVariable'] in the template. That would keep it from executing your plugin for every postbit.
Or you could make an additional plugin using hook postbit_display_complete that just had a global statement in it.
|