From 60b8402d763f2063279e5c5adb607193d48cc522 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 9 Aug 2023 10:53:10 +1000 Subject: [PATCH] Updates for tests for html generation with special translations --- app/Utils/HtmlEngine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Utils/HtmlEngine.php b/app/Utils/HtmlEngine.php index 00ab85d568be..97b2e7ea46f5 100644 --- a/app/Utils/HtmlEngine.php +++ b/app/Utils/HtmlEngine.php @@ -705,7 +705,7 @@ class HtmlEngine $tax_label .= ctrans('texts.reverse_tax_info') . "
"; } - if($this->client->country_id !== (int)$this->company->settings->country_id){ + if((int)$this->client->country_id !== (int)$this->company->settings->country_id){ $tax_label .= ctrans('texts.intracommunity_tax_info') . "
"; }