[Vtigercrm-commits] [vtiger-commits] r7265 - /vtigercrm/trunk/include/utils/EditViewUtils.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Mon Jun 19 11:02:03 EDT 2006
Author: saraj
Date: Mon Jun 19 09:01:59 2006
New Revision: 7265
Log:
cahnges made to fix the issue 1260
Modified:
vtigercrm/trunk/include/utils/EditViewUtils.php
Modified: vtigercrm/trunk/include/utils/EditViewUtils.php
==============================================================================
--- vtigercrm/trunk/include/utils/EditViewUtils.php (original)
+++ vtigercrm/trunk/include/utils/EditViewUtils.php Mon Jun 19 09:01:59 2006
@@ -1035,12 +1035,10 @@
$rem_hrs = floor(($col_fields[$fieldname]-$rem_days*24*60)/60);
$rem_min = ($col_fields[$fieldname]-$rem_days*24*60)%60;
$editview_label[]=$mod_strings[$fieldlabel];
- $custfld .= '<td valign="top" colspan=3> <input type="radio" name="set_reminder" value="Yes" '.$SET_REM.'> '.$mod_strings['LBL_YES'].' <input type="radio" name="set_reminder" value="No"> '.$mod_strings['LBL_NO'].' ';
$day_options = getReminderSelectOption(0,31,'remdays',$rem_days);
$hr_options = getReminderSelectOption(0,23,'remhrs',$rem_hrs);
$min_options = getReminderSelectOption(1,59,'remmin',$rem_min);
- $custfld .= ' '.$day_options.' '.$mod_strings['LBL_DAYS'].' '.$hr_options.' '.$mod_strings['LBL_HOURS'].' '.$min_options.' '.$mod_strings['LBL_MINUTES'].' '.$mod_strings['LBL_BEFORE_EVENT'].'</td>';
- $fieldvalue[] = array(array(0,32,'remdays','days',$rem_days),array(0,24,'remhrs','hours',$rem_hrs),array(1,60,'remmin','minutes before event',$rem_min));
+ $fieldvalue[] = array(array(0,32,'remdays',$mod_strings['LBL_DAYS'],$rem_days),array(0,24,'remhrs',$mod_strings['LBL_HOURS'],$rem_hrs),array(1,60,'remmin',$mod_strings['LBL_MINUTES'].' '.$mod_strings['LBL_BEFORE_EVENT'],$rem_min));
$fieldvalue[] = array($SET_REM,$mod_strings['LBL_YES'],$mod_strings['LBL_NO']);
$SET_REM = '';
}
More information about the vtigercrm-commits
mailing list