this is the code in xml file
[code:1]<field type="radio" title="_pb_NotifyMe" name="cb_pb_notifyme" description="_pb_NotifyMe_Desc" registration="1" readonly="1" profile="1" >
<fieldvalue title="_UE_YES" ordering="1" sys="0" />
<fieldvalue title="_UE_NO" ordering ="2" sys="0" />
</field>[/code:1]
this in the php file
[code:1]$notify = strtolower($userConfig->cb_pb_notifyme);
if($notify=='_ue_yes'){
$cbNotification = new cbNotification();
$res=$cbNotification->sendFromSystem($id,sprintf(_pb_MSGSUB,getLangDefinition($tab->title)),sprintf(_pb_MSGBODY,$postername,getLangDefinition($tab->title)).sprintf($autoPublish?_pb_MSGBODYAUTOAPPROVED:_pb_MSGBODYREVIEWAPPROVE, getLangDefinition($tab->title),$this->_getAbsURLwithParam(array())));
}
}
}[/code:1]
I don't find a solution, somebody can help me?