From: Joe Hunt Date: Tue, 11 Mar 2008 01:59:05 +0000 (+0000) Subject: Small fix for alignment of date and due date label fields in customer_invoice.php X-Git-Tag: v2.4.2~19^2~2195 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=098a13797b3482e21a9fe375d29d4accf8d9d770;p=fa-stable.git Small fix for alignment of date and due date label fields in customer_invoice.php --- 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();