Hi folks,<br><br>I&#39;m having some trouble registering events on vtiger. I register them giving a specific module by parameter, but it seem to be applying the event for every single module in the system. <br><br>Example:<br>
<br>require_once(&#39;vtlib/Vtiger/Module.php&#39;);<br><br>$modulo = Vtiger_Module::getInstance(&#39;Accounts&#39;);<br><br>$evento = Vtiger_Event::register($modulo,&#39;vtiger.entity.beforesave&#39;,&#39;MyClass&#39;,&#39;myclass.php&#39;);<br>
<br>This event triggers everytime I save an account, but it also triggers when I save a Contact. Why vtiger is not respecting the module I gave when I create the event? Is there any workaround to this issue?<br><br>Cheers,<br>
<br>Nicolas<br><br>