From 63244ebc421949d60b97596ef1823cf84e1b77e6 Mon Sep 17 00:00:00 2001 From: mbfdias Date: Fri, 6 Dec 2024 20:04:43 +0000 Subject: [PATCH] Left Double Quotation Mark MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “ to " and ” to " --- SMSCounter.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SMSCounter.php b/SMSCounter.php index 983bec7..6df6c49 100644 --- a/SMSCounter.php +++ b/SMSCounter.php @@ -689,6 +689,8 @@ public function removeAccents($str) 'Ǚ' => 'U', 'ǚ' => 'u', // grave accent 'Ǜ' => 'U', 'ǜ' => 'u', + // Left Double Quotation Mark + '“' => '"', '”' => '"', // spaces ' ' => ' ', ' ' => ' ', ];