From 098a13797b3482e21a9fe375d29d4accf8d9d770 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Tue, 11 Mar 2008 01:59:05 +0000 Subject: [PATCH] Small fix for alignment of date and due date label fields in customer_invoice.php --- CHANGELOG.txt | 4 ++++ sales/customer_invoice.php | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c8a3f101..648d690d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,10 @@ Legend: ! -> Note $ -> Affected files +11-Mar-2008 Joe Hunt + # Small fix for alignment of date and due date label fields in customer_invoice.php + $ /sales/customer_invoice.php + 10-Mar-2008 Joe Hunt # Small fix for Template Invoice in sales_order_entry.php on line 363 (duedate for Invoice). $ /sales/sales_order_entry.php diff --git a/sales/customer_invoice.php b/sales/customer_invoice.php index afbd3513..8b3102ac 100644 --- a/sales/customer_invoice.php +++ b/sales/customer_invoice.php @@ -296,13 +296,13 @@ if (!isset($_POST['InvoiceDate']) || !is_date($_POST['InvoiceDate'])) { } } -date_cells(_("Date"), 'InvoiceDate', $_POST['InvoiceDate'], 0, 0, 0, "class='tableheader'"); +date_cells(_("Date"), 'InvoiceDate', $_POST['InvoiceDate'], 0, 0, 0, "class='tableheader2'"); if (!isset($_POST['due_date']) || !is_date($_POST['due_date'])) { $_POST['due_date'] = get_invoice_duedate($_SESSION['Items']->customer_id, $_POST['InvoiceDate']); } -date_cells(_("Due Date"), 'due_date', $_POST['due_date'], 0, 0, 0, "class='tableheader'"); +date_cells(_("Due Date"), 'due_date', $_POST['due_date'], 0, 0, 0, "class='tableheader2'"); end_row(); end_table(); -- 2.30.2