From 14d751affbd67ae17751d25781b7995bc259585d Mon Sep 17 00:00:00 2001 From: Ian Van Ness Date: Wed, 17 Jan 2018 19:45:44 -0800 Subject: [PATCH] Update mail.php demo failure html tag use proper opening tag for fail condition --- demo/client/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/client/mail.php b/demo/client/mail.php index 9486e09..7ac6e78 100644 --- a/demo/client/mail.php +++ b/demo/client/mail.php @@ -41,7 +41,7 @@ if (isset($_POST["mailto"]) && $_POST["mailto"]) { if (!$resp->faultCode()) { print "Mail sent OK
\n"; } else { - print ""; + print ""; print "Mail send failed
\n"; print "Fault: "; print "Code: " . htmlspecialchars($resp->faultCode()) . -- 2.43.0