Small fix for alignment of date and due date label fields in customer_invoice.php
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Tue, 11 Mar 2008 01:59:05 +0000 (01:59 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Tue, 11 Mar 2008 01:59:05 +0000 (01:59 +0000)
CHANGELOG.txt
sales/customer_invoice.php

index c8a3f1014f1362cc18a7cbd82e6309f80aa3183b..648d690d0de63ed3e38c9ff8faf98820dfe279c3 100644 (file)
@@ -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
index afbd3513c9e3b205a70278d2a84784763ce3639e..8b3102ac5973bdb90a79dab340f7a0139977fea9 100644 (file)
@@ -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();