rasmus Sun, 22 Jan 2012 07:32:24 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=322565
Log:
Gah! posttohost() doesn't speak ssl
Changed paths:
U web/php/trunk/mailing-lists.php
U web/php/trunk/manual/add-note.php
U web/php/trunk/submit-event.php
Modified: web/php/trunk/mailing-lists.php
===================================================================
--- web/php/trunk/mailing-lists.php 2012-01-22 07:04:25 UTC (rev 322564)
+++ web/php/trunk/mailing-lists.php 2012-01-22 07:32:24 UTC (rev 322565)
@@ -68,7 +68,7 @@
// Get in contact with master server to [un]subscribe the user
$result = posttohost(
- "https://master.php.net/entry/subscribe.php",
+ "http://master.php.net/entry/subscribe.php",
array(
"request" => $request,
"email" => $_POST['email'],
Modified: web/php/trunk/manual/add-note.php
===================================================================
--- web/php/trunk/manual/add-note.php 2012-01-22 07:04:25 UTC (rev 322564)
+++ web/php/trunk/manual/add-note.php 2012-01-22 07:32:24 UTC (rev 322565)
@@ -97,7 +97,7 @@
// Post the variables to the central user note script
// ($MQ is defined in prepend.inc)
$result = posttohost(
- "https://master.php.net/entry/user-note.php",
+ "http://master.php.net/entry/user-note.php",
array(
'user' => ($MQ ? stripslashes($user) : $user),
'note' => ($MQ ? stripslashes($note) : $note),
Modified: web/php/trunk/submit-event.php
===================================================================
--- web/php/trunk/submit-event.php 2012-01-22 07:04:25 UTC (rev 322564)
+++ web/php/trunk/submit-event.php 2012-01-22 07:32:24 UTC (rev 322565)
@@ -121,7 +121,7 @@
if (isset($_POST['action']) && $_POST['action'] === 'Submit' && empty($errors)) {
// Submit to master.php.net
- $result = posttohost("https://master.php.net/entry/event.php", $_POST);
+ $result = posttohost("http://master.php.net/entry/event.php", $_POST);
if ($result) {
$errors[] = "There was an error processing your submission: $result";
}