[Vtigercrm-commits] [vtiger-commits] r5095 - /vtigercrm/trunk/include/utils/ListViewUtils.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Thu Apr 13 06:33:36 EDT 2006
Author: saraj
Date: Thu Apr 13 04:33:32 2006
New Revision: 5095
Log:
getConversionRate() has been changed
Modified:
vtigercrm/trunk/include/utils/ListViewUtils.php
Modified: vtigercrm/trunk/include/utils/ListViewUtils.php
==============================================================================
--- vtigercrm/trunk/include/utils/ListViewUtils.php (original)
+++ vtigercrm/trunk/include/utils/ListViewUtils.php Thu Apr 13 04:33:32 2006
@@ -171,7 +171,8 @@
if($lbl_name =='Amount')
{
$currencyid=fetchCurrency($current_user->id);
- $curr_symbol=getCurrencySymbol($currencyid);
+ $rate_symbol=getCurrencySymbolandCRate($currencyid);
+ $curr_symbol = $rate_symbol['symbol'];
$lbl_name .=': (in '.$curr_symbol.')';
}
@@ -196,7 +197,8 @@
if($name =='Amount' && $relatedlist !='' )
{
$currencyid=fetchCurrency($current_user->id);
- $curr_symbol=getCurrencySymbol($currencyid);
+ $rate_symbol=getCurrencySymbolandCRate($currencyid);
+ $curr_symbol = $rate_symbol['symbol'];
$name .=': (in '.$curr_symbol.')';
}
More information about the vtigercrm-commits
mailing list