Topic: Exchange Rates - show default currency and provider

On the Exchange Rates screen (Banking and General Ledger) there is a message towards the bottom of the screen which states "Exchange rates are entered against the company currency.". This is not very informative. A slight addition to the code will show what the current company currency is and the exchange rate provider. Like so:

   Exchange rates are entered against the company currency = USD (Provider = ECB)

gl/manage/exchange_rates.php

 @@ -146,7 +146,7 @@ function display_rate_edit()
 
     submit_add_or_update_center($selected_id == '', '', 'both');
 
-    display_note(_("Exchange rates are entered against the company currency."), 1);
+    display_note(_("Exchange rates are entered against the company currency = ".get_company_pref('curr_default')." (Provider = ".$xchg_rate_provider.")"), 1);
 }
 
 //---------------------------------------------------------------------------------------------

Re: Exchange Rates - show default currency and provider

@joe: ?
Will need to change the translation strings as well.