From 264eb72b0c7d75b5f56d140f1b02a9782ded6dda Mon Sep 17 00:00:00 2001 From: Mike Schinkel Date: Fri, 23 Jul 2021 01:13:19 -0400 Subject: [PATCH] Change mailing list submit URL to use HTTPS The mailing list URL "http://main.php.net/entry/subscribe.php" was not using "https://main.php.net/entry/subscribe.php" and thus was failing. Closes GH-426. --- mailing-lists.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailing-lists.php b/mailing-lists.php index a608711cd..1dd5e2ef3 100644 --- a/mailing-lists.php +++ b/mailing-lists.php @@ -72,7 +72,7 @@ if (isset($_POST['action'])) { // Get in contact with main server to [un]subscribe the user $result = posttohost( - "http://main.php.net/entry/subscribe.php", + "https://main.php.net/entry/subscribe.php", array( "request" => $request, "email" => $_POST['email'],