From 80fcbcac78184061491fd54b29484fa4bd2a5cf3 Mon Sep 17 00:00:00 2001 From: Marko Kaznovac Date: Mon, 8 Nov 2021 13:06:43 +0100 Subject: [PATCH] [examples] fix referenced script name --- examples/dns_finish.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dns_finish.php b/examples/dns_finish.php index ee1b91d..3e9bf00 100644 --- a/examples/dns_finish.php +++ b/examples/dns_finish.php @@ -29,7 +29,7 @@ { foreach($pending as $challenge) { - // Let LetsEncrypt verify this challenge, which should have been fulfilled in exampleDNSStart.php. + // Let LetsEncrypt verify this challenge, which should have been fulfilled in dns_init.php. $order->verifyPendingOrderAuthorization($challenge['identifier'], LEOrder::CHALLENGE_TYPE_DNS); } } @@ -42,4 +42,4 @@ // Check whether the order has been finalized before we can get the certificate. If finalized, get the certificate. if($order->isFinalized()) $order->getCertificate(); } -?> \ No newline at end of file +?>