[Vtigercrm-commits] [vtiger-commits] r10563 - /vtigercrm/branches/5.0.3/modules/Potentials/Potentials.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Thu Apr 5 03:12:25 EDT 2007
Author: saraj
Date: Thu Apr 5 01:12:17 2007
New Revision: 10563
Log:
fix for Field Label is incorrect on Notes. Fixes #3589 --minnie
Modified:
vtigercrm/branches/5.0.3/modules/Potentials/Potentials.php
Modified: vtigercrm/branches/5.0.3/modules/Potentials/Potentials.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Potentials/Potentials.php (original)
+++ vtigercrm/branches/5.0.3/modules/Potentials/Potentials.php Thu Apr 5 01:12:17 2007
@@ -54,7 +54,7 @@
'Account Name'=>Array('account'=>'accountname'),
'Sales Stage'=>Array('potential'=>'sales_stage'),
'Amount'=>Array('potential'=>'amount'),
- 'Expected Close'=>Array('potential'=>'closingdate'),
+ 'Expected Close Date'=>Array('potential'=>'closingdate'),
'Assigned To'=>Array('crmentity','smownerid')
);
@@ -63,7 +63,7 @@
'Account Name'=>'accountid',
'Sales Stage'=>'sales_stage',
'Amount'=>'amount',
- 'Expected Close'=>'closingdate',
+ 'Expected Close Date'=>'closingdate',
'Assigned To'=>'assigned_user_id');
var $list_link_field= 'potentialname';
@@ -71,13 +71,13 @@
var $search_fields = Array(
'Potential'=>Array('potential'=>'potentialname'),
'Account Name'=>Array('potential'=>'accountid'),
- 'Expected Close'=>Array('potential'=>'closedate')
+ 'Expected Close Date'=>Array('potential'=>'closedate')
);
var $search_fields_name = Array(
'Potential'=>'potentialname',
'Account Name'=>'account_id',
- 'Expected Close'=>'closingdate'
+ 'Expected Close Date'=>'closingdate'
);
var $required_fields = array(
More information about the vtigercrm-commits
mailing list