[Vtigercrm-commits] [vtiger-commits] r10265 - /vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue Feb 27 10:32:58 EST 2007
Author: saraj
Date: Tue Feb 27 08:32:52 2007
New Revision: 10265
Log:
Send Notification is not enabled in Calendar Edit View if enabled during creation. Fixes #3111
Modified:
vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl
Modified: vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl
==============================================================================
--- vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl (original)
+++ vtigercrm/branches/5.0.3/Smarty/templates/ActivityEditView.tpl Tue Feb 27 08:32:52 2007
@@ -232,7 +232,14 @@
{else}
<input name="assigned_user_id" value="{$CURRENTUSERID}" type="hidden">
{/if}
- <br>{if $LABEL.sendnotification neq ''}<input type="checkbox" name="sendnotification" > {$LABEL.sendnotification}{/if}
+ <br>{if $LABEL.sendnotification neq ''}
+ {if $ACTIVITYDATA.sendnotification eq 1}
+
+ <input type="checkbox" name="sendnotification" checked> {$LABEL.sendnotification}
+ {else}
+ <input type="checkbox" name="sendnotification" > {$LABEL.sendnotification}
+ {/if}
+ {/if}
</td>
</tr>
{if $LABEL.taskpriority neq ''}
More information about the vtigercrm-commits
mailing list