From: Joe Hunt Date: Tue, 11 Mar 2008 08:54:37 +0000 (+0000) Subject: Design fix (Date and Due Date labels) X-Git-Tag: v2.4.2~19^2~2194 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=c0e137510b68131f7aadc4684067549aa0758009;p=fa-stable.git Design fix (Date and Due Date labels) --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 648d690d..49f22c49 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -20,8 +20,9 @@ Legend: $ -> Affected files 11-Mar-2008 Joe Hunt - # Small fix for alignment of date and due date label fields in customer_invoice.php + # Small fix for alignment of date and due date label fields in customer_invoice.php and customer_delivery.php $ /sales/customer_invoice.php + /sales/customer_delivery.php 10-Mar-2008 Joe Hunt # Small fix for Template Invoice in sales_order_entry.php on line 363 (duedate for Invoice). diff --git a/sales/customer_delivery.php b/sales/customer_delivery.php index cc28d7f7..ba7016ef 100644 --- a/sales/customer_delivery.php +++ b/sales/customer_delivery.php @@ -319,7 +319,7 @@ if (!isset($_POST['DispatchDate']) || !is_date($_POST['DispatchDate'])) { $_POST['DispatchDate'] = end_fiscalyear(); } } -date_cells(_("Date"), 'DispatchDate', $_POST['DispatchDate'], 0, 0, 0, "class='tableheader'"); +date_cells(_("Date"), 'DispatchDate', $_POST['DispatchDate'], 0, 0, 0, "class='tableheader2'"); end_row(); end_table(); @@ -331,7 +331,7 @@ start_table("$table_style width=90%"); if (!isset($_POST['due_date']) || !is_date($_POST['due_date'])) { $_POST['due_date'] = get_invoice_duedate($_SESSION['Items']->customer_id, $_POST['DispatchDate']); } -date_row(_("Invoice Dead-line"), 'due_date', $_POST['due_date'], 0, 0, 0, "class='tableheader'"); +date_row(_("Invoice Dead-line"), 'due_date', $_POST['due_date'], 0, 0, 0, "class='tableheader2'"); end_table(); echo "";