Hi,
I have a CB plugin that was working since Joomla 1.0 and do not anymore since a migration (I can't say whitch one):
Code:
class cblefPlugin extends cbPluginHandler
{
...
function onBeforeDeleteUser()
{
...
if ( $db->loadResult() ) {
$this->raiseError();
return false;
}
}
$this->raiseError() in my plugin used to stop comprofiler user deletion but do not anymore. What is the new way to intercept comprofiler user deletion ?