From 439c08d025473a5f65dec142f1b9f4be286dbfe0 Mon Sep 17 00:00:00 2001 From: Hemachandar Date: Wed, 4 Feb 2026 13:16:22 +0530 Subject: [PATCH] remove escaping --- src/Appwrite/Platform/Workers/Certificates.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Workers/Certificates.php b/src/Appwrite/Platform/Workers/Certificates.php index 593e94080c..7ec08396b7 100644 --- a/src/Appwrite/Platform/Workers/Certificates.php +++ b/src/Appwrite/Platform/Workers/Certificates.php @@ -324,7 +324,7 @@ class Certificates extends Action $certificate->setAttribute('logs', $logs); } else { // Delayed generation: third-party handles certificate issuance asynchronously - $logs .= "\033[90m[{$date}] \033[97mSSL certificate is being issued. This usually takes a few minutes — no action needed on your end. We\'ll periodically check and update the status. \033[0m\n"; + $logs .= "\033[90m[{$date}] \033[97mSSL certificate is being issued. This usually takes a few minutes — no action needed on your end. We'll periodically check and update the status. \033[0m\n"; $certificate->setAttribute('logs', $logs); }