Hi guys,<br><br>I'was facing an issue with the calendar module and, after some debug, I've found this in the DetailView.php file:<br><br>if(isset($finaldata['sendnotification']) && $finaldata['sendnotification'] == 'yes')<br>
<br>The code above will never work with any translated vtiger installation, once the "sendnotification" field stores the translated version of the word "yes".<br><br>Can we add this at vtiger's trac and change the above code with something like the code below, and make it part of vtiger's next version?<br>
<br>if(isset($finaldata['sendnotification']) && $finaldata['sendnotification'] == $mod_strings['LBL_YES'])<br><br>Cheers<br><br>Nicolas<br>