The problem seems to be in the plugin module:
package crm::plugin::contact;
use strict; use base qw(crm::plugin); use crm::cdbi::contact;
1;
I don't see how this could work unless you say that your plugin ISA crm::dbi::contact.
use base qw(crm::plugin crm::dbi::contact);
Anyway, there's no reason to make these into plugins. TT can call methods on regular objects. Just pass your objects to the process() call with the rest of the data.
- Perrin
_______________________________________________ templates mailing list [EMAIL PROTECTED] http://lists.template-toolkit.org/mailman/listinfo/templates
