From a70545abd2ca95648bf5f077a7f00a8301a4ca01 Mon Sep 17 00:00:00 2001 From: Josh Bowden Date: Mon, 22 Apr 2019 17:29:10 +1000 Subject: [PATCH] fix missing underscore from lang string --- application/controllers/Sales.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Sales.php b/application/controllers/Sales.php index 9cf92614f..b3aaadb36 100644 --- a/application/controllers/Sales.php +++ b/application/controllers/Sales.php @@ -793,7 +793,7 @@ class Sales extends Secure_Controller { $to = $sale_data['customer_email']; $number = $sale_data[$type."_number"]; - $subject = $this->lang->line("sales" . $type) . ' ' . $number; + $subject = $this->lang->line("sales_" . $type) . ' ' . $number; $text = $this->config->item('invoice_email_message'); $tokens = array(new Token_invoice_sequence($sale_data['invoice_number']),