Double semicolon line endings fixed by @apmuthu.
[fa-stable.git] / inventory / view / view_transfer.php
index ec35033328ec8d13587b8dc6d4ce1bcb71e29eb2..f9c77816e9f0acfd9dbef5c0a0f9e46514372da2 100644 (file)
@@ -47,7 +47,7 @@ end_table(2);
 
 start_table(TABLESTYLE, "width='90%'");
 
-$th = array(_("Item"), _("Description"), _("Quantity"), _("Units"));
+$th = array(_("Item Code"), _("Description"), _("Quantity"), _("Units"));
 table_header($th);
 $transfer_items = get_stock_moves(ST_LOCTRANSFER, $trans_no);
 $k = 0;
@@ -61,7 +61,7 @@ while ($item = db_fetch($transfer_items))
         label_cell($item['description']);
         qty_cell($item['qty'], false, get_qty_dec($item['stock_id']));
         label_cell($item['units']);
-        end_row();;
+        end_row();
        }
 }