Update mail.php demo failure html tag
authorIan Van Ness <ian@futurekarma.org>
Thu, 18 Jan 2018 03:45:44 +0000 (19:45 -0800)
committerGitHub <noreply@github.com>
Thu, 18 Jan 2018 03:45:44 +0000 (19:45 -0800)
use proper opening tag for fail condition

demo/client/mail.php

index 9486e09..7ac6e78 100644 (file)
@@ -41,7 +41,7 @@ if (isset($_POST["mailto"]) && $_POST["mailto"]) {
     if (!$resp->faultCode()) {
         print "Mail sent OK<br/>\n";
     } else {
-        print "<fonr color=\"red\">";
+        print "<font color=\"red\">";
         print "Mail send failed<br/>\n";
         print "Fault: ";
         print "Code: " . htmlspecialchars($resp->faultCode()) .