From: Joe Date: Mon, 11 Apr 2022 09:31:50 +0000 (+0200) Subject: Coding bug in inventory_db.inc. Fixed. X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=4eceba10c240a39176ccdfb425f709a8d584a137;p=fa-stable.git Coding bug in inventory_db.inc. Fixed. --- diff --git a/inventory/includes/inventory_db.inc b/inventory/includes/inventory_db.inc index 7b672fae..df256755 100644 --- a/inventory/includes/inventory_db.inc +++ b/inventory/includes/inventory_db.inc @@ -95,7 +95,7 @@ function send_reorder_email($loc, $st_ids, $st_names, $st_num, $st_reorder) $company = get_company_prefs(); $mail = new email($company['coy_name'], $company['email']); $to = $loc['location_name'] . " <" . $loc['email'] . ">"; - $subject = _("Stocks below Re-Order Level at " . $loc['location_name']); + $subject = _("Stocks below Re-Order Level at ") . $loc['location_name']; $msg = "\n"; for ($i = 0; $i < count($st_ids); $i++) $msg .= $st_ids[$i] . " " . $st_names[$i] . ", " . _("Re-Order Level") . ": " . $st_reorder[$i] . ", " . _("Below") . ": " . $st_num[$i] . "\n";