From 1756b92379a503b689f9f9a0929a3353edbb1e73 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Thu, 7 May 2009 11:58:13 +0000 Subject: [PATCH] Layout bug in exchange rate display --- CHANGELOG.txt | 4 ++++ includes/ui/ui_view.inc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 2d31fe2f..ac6f530b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,10 @@ Legend: ! -> Note $ -> Affected files +07-May-2009 Joe Hunt +# Layout bug in exchange rate display +$ /includes/ui/ui_view.inc + 05-May-2009 Janusz Dobrowolski # Fixed check if code for new sales kit is not used. $ /inventory/manage/sales_kits.php diff --git a/includes/ui/ui_view.inc b/includes/ui/ui_view.inc index 1e43fdf9..a1fb09ff 100644 --- a/includes/ui/ui_view.inc +++ b/includes/ui/ui_view.inc @@ -317,7 +317,7 @@ function exchange_rate_display($from_currency, $to_currency, $date_, $edit_rate= if ($edit_rate) text_row(_("Exchange Rate:"), '_ex_rate', $rate, 8, 8, null, "", " $from_currency = 1 $to_currency"); else - label_row(_("Exchange Rate:"),"$rate $from_currency = 1 $to_currency" ); + label_row(_("Exchange Rate:"),"$rate $from_currency = 1 $to_currency" ); $Ajax->addUpdate('_ex_rate','_ex_rate', $rate); } } -- 2.30.2