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