From 26229b5446802a5fbc9582ede69c5a2ca5348a81 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sat, 18 Jun 2011 15:27:20 +0200 Subject: [PATCH] Cleanup in document footer text. --- reporting/includes/doctext.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reporting/includes/doctext.inc b/reporting/includes/doctext.inc index bd8a29bc..4d92c664 100644 --- a/reporting/includes/doctext.inc +++ b/reporting/includes/doctext.inc @@ -30,7 +30,7 @@ _("Unit"), _("Price"), _("Discount %"), _("Total")); // for links use 'text' => 'url' - $Footer[0] = _("All amounts stated in") . @$this->formData['curr_code']; + $Footer[0] = _("All amounts stated in") . " - " . @$this->formData['curr_code']; switch ($this->formData['doctype']) { @@ -88,7 +88,7 @@ case ST_CUSTCREDIT: $this->title = _("CREDIT NOTE"); $this->formData['document_name'] =_("Credit No."); - $Footer[0] = _("Please quote Credit no. when paying. All amounts stated in") . $this->formData['curr_code']; + $Footer[0] = _("Please quote Credit no. when paying. All amounts stated in") . " - " . $this->formData['curr_code']; $aux_info = array( _("Customers Reference") => @$this->formData["customer_ref"], @@ -103,7 +103,7 @@ $this->title = _("INVOICE"); $this->formData['document_name'] =_("Invoice No."); $this->formData['domicile'] = $this->company['domicile']; - $Footer[0] = _("Please quote Invoice no. when paying. All amounts stated in"). $this->formData['curr_code']; + $Footer[0] = _("Please quote Invoice no. when paying. All amounts stated in"). " - " . $this->formData['curr_code']; $deliveries = get_sales_parent_numbers(ST_SALESINVOICE, $this->formData['trans_no']); if ($print_invoice_no == 0) -- 2.30.2