From fc4715754ffda58a8731c61d07e4eb964ca38447 Mon Sep 17 00:00:00 2001 From: valentina Date: Tue, 8 Oct 2024 09:51:15 +0200 Subject: [PATCH] fix: generazione fattura con caratteri speciali --- plugins/exportFE/src/Validator.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/exportFE/src/Validator.php b/plugins/exportFE/src/Validator.php index 5fa29be0a..04303ed8d 100755 --- a/plugins/exportFE/src/Validator.php +++ b/plugins/exportFE/src/Validator.php @@ -1014,11 +1014,11 @@ class Validator '℀' => 'a/c', '℁' => 'a/s', 'ℂ' => 'C', - '℃' => '°C', + '℃' => 'C', '℅' => 'c/o', '℆' => 'c/u', 'ℇ' => 'Ɛ', - '℉' => '°F', + '℉' => 'F', 'ℊ' => 'g', 'ℋ' => 'H', 'ℌ' => 'H', @@ -4445,6 +4445,7 @@ class Validator '‐' => '-', '✓' => '-', '●' => '-', + '°' => '.', ]); return $string;