! -> Note
$ -> Affected files
+10-Dec-2008 Janusz Dobrowolski
+# [0000099] New line added to inventory transfer/adjustment sometimes overwrites old one.
+$ /inlucdes/ui/items_cart.inc
+
09-Dec-2008 Janusz Dobrowolski
# [0000098] Unable issue of credit note for invoice with removed item lines.
$ /sales/customer_credit_invoice.php
function remove_from_cart($line_no)
{
- unset($this->line_items[$line_no]);
+ array_splice($this->line_items, $line_no, 1);
}
function count_items()
{
if (isset($index))
{
- unset($this->gl_items[$index]);
+ array_splice($this->gl_items, $line_no, 1);
}
}