! -> Note
$ -> Affected files
+18-Jul-2008 Joe Hunt
+# Parse error fixed [0000021] in customer_credit_invoice.php
+$ /sales/customer_credit_invoice.php
+
15-Jul-2008 Janusz Dobrowolski
# Fixed bug [0000018] - unwanted freight cost reset on page update.
$ /sales/customer_delivery.php
$ok =1;
foreach ($_SESSION['Items']->line_items as $line_no=>$itm) {
if (isset($_POST['Line'.$line_no])) {
- if (check_num('Line'.$line_no, 0, $itm->quantity))) {
+ if (check_num('Line'.$line_no, 0, $itm->quantity)) {
$_SESSION['Items']->line_items[$line_no]->qty_dispatched =
input_num('Line'.$line_no);
}
}
//-----------------------------------------------------------------------------
-if (get_post('Update'))
+if (get_post('Update'))
{
$Ajax->activate('credit_items');
}