Topic: Coding bug in inventory_db.inc

line : $subject = _("Stocks below Re-Order Level at " . $loc['location_name']);

Should be : $subject = _("Stocks below Re-Order Level at ") . $loc['location_name'];

Otherwise translation won't work.

F.

Re: Coding bug in inventory_db.inc

Fixed and committed to stable repo. Thanks.

Joe