[Vtigercrm-commits] [vtiger-commits] r9218 - /vtigercrm/trunk/modules/Calendar/TodoSave.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Thu Aug 31 06:25:36 EDT 2006
Author: saraj
Date: Thu Aug 31 04:25:32 2006
New Revision: 9218
Log:
changes made to fix the calendar related issue --Minnie
Modified:
vtigercrm/trunk/modules/Calendar/TodoSave.php
Modified: vtigercrm/trunk/modules/Calendar/TodoSave.php
==============================================================================
--- vtigercrm/trunk/modules/Calendar/TodoSave.php (original)
+++ vtigercrm/trunk/modules/Calendar/TodoSave.php Thu Aug 31 04:25:32 2006
@@ -40,8 +40,11 @@
$focus->column_fields["date_start"] = $_REQUEST["task_date_start"];
$focus->column_fields["due_date"] = $_REQUEST["task_due_date"];
$focus->column_fields["taskpriority"] = $_REQUEST["taskpriority"];
+ $focus->column_fields["parent_id"] = $_REQUEST["task_parent_id"];
+ $focus->column_fields["contact_id"] = $_REQUEST["task_contact_id"];
$focus->column_fields["description"] = $_REQUEST["task_description"];
- $focus->column_fields["sendnotification"] = $_REQUEST["task_sendnotification"];
+ if(isset($_REQUEST['task_sendnotification']) && $_REQUEST['task_sendnotification'] != null)
+ $focus->column_fields["sendnotification"] = $_REQUEST["task_sendnotification"];
$focus->save($tab_type);
header("Location: index.php?action=index&module=Calendar&view=".$_REQUEST['view']."&hour=".$_REQUEST['hour']."&day=".$_REQUEST['day']."&month=".$_REQUEST['month']."&year=".$_REQUEST['year']."&viewOption=".$_REQUEST['viewOption']."&subtab=".$_REQUEST['subtab']."&parenttab=".$_REQUEST['parenttab']);
More information about the vtigercrm-commits
mailing list