From 1d4be620ad4b4f44d91d780ba78980c362fad29a Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Mon, 5 Apr 2021 21:53:22 -0700 Subject: [PATCH] Remove references to master.php.net --- include/shared-manual.inc | 6 +++--- mailing-lists.php | 4 ++-- submit-event.php | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/shared-manual.inc b/include/shared-manual.inc index 47fa00e31..64241731c 100644 --- a/include/shared-manual.inc +++ b/include/shared-manual.inc @@ -277,21 +277,21 @@ VOTEDIV; $admin = "\n \n " . make_popup_link( - 'https://master.php.net/manage/user-notes.php?action=edit+' . $id, + 'https://main.php.net/manage/user-notes.php?action=edit+' . $id, 'edit note', 'admin', 'scrollbars=yes,width=650,height=400' ) . "\n " . make_popup_link( - 'https://master.php.net/manage/user-notes.php?action=reject+' . $id, + 'https://main.php.net/manage/user-notes.php?action=reject+' . $id, 'reject note', 'admin', 'scrollbars=no,width=300,height=200' ) . "\n " . make_popup_link( - 'https://master.php.net/manage/user-notes.php?action=delete+' . $id, + 'https://main.php.net/manage/user-notes.php?action=delete+' . $id, 'delete note', 'admin', 'scrollbars=no,width=300,height=200' diff --git a/mailing-lists.php b/mailing-lists.php index 7a80a4e11..14a1e9da8 100644 --- a/mailing-lists.php +++ b/mailing-lists.php @@ -64,9 +64,9 @@ if (isset($_POST['maillist'])) { } $remote_addr = i2c_realip(); - // Get in contact with master server to [un]subscribe the user + // Get in contact with main server to [un]subscribe the user $result = posttohost( - "http://master.php.net/entry/subscribe.php", + "http://main.php.net/entry/subscribe.php", array( "request" => $request, "email" => $_POST['email'], diff --git a/submit-event.php b/submit-event.php index 94b31e151..ba041664d 100644 --- a/submit-event.php +++ b/submit-event.php @@ -115,8 +115,8 @@ if ($process) { } if (isset($_POST['action']) && $_POST['action'] === 'Submit' && empty($errors)) { - // Submit to master.php.net - $result = posttohost("http://master.php.net/entry/event.php", $_POST); + // Submit to main.php.net + $result = posttohost("http://main.php.net/entry/event.php", $_POST); if ($result) { $errors[] = "There was an error processing your submission: $result"; }