[Vtigercrm-commits] [vtiger-commits] r9591 - /vtigercrm/branches/5.0.1/include/utils/EditViewUtils.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Mon Oct 9 02:21:02 EDT 2006
Author: richie
Date: Mon Oct 9 00:20:58 2006
New Revision: 9591
Log:
changes made for event end time and for skype customfield integration
Modified:
vtigercrm/branches/5.0.1/include/utils/EditViewUtils.php
Modified: vtigercrm/branches/5.0.1/include/utils/EditViewUtils.php
==============================================================================
--- vtigercrm/branches/5.0.1/include/utils/EditViewUtils.php (original)
+++ vtigercrm/branches/5.0.1/include/utils/EditViewUtils.php Mon Oct 9 00:20:58 2006
@@ -106,7 +106,8 @@
}
else
{
- $curr_time = date('H:i');
+ $endtime = time() + (60 * 60);
+ $curr_time = date('H:i',$endtime);
}
}
$fieldvalue[] = array($disp_value => $curr_time) ;
@@ -152,6 +153,11 @@
$fieldvalue [] = $options;
}
elseif($uitype == 17)
+ {
+ $editview_label[]=$mod_strings[$fieldlabel];
+ $fieldvalue [] = $value;
+ }
+ elseif($uitype == 85) //added for Skype by Minnie
{
$editview_label[]=$mod_strings[$fieldlabel];
$fieldvalue [] = $value;
More information about the vtigercrm-commits
mailing list