Author: Rasmus Lerdorf (rlerdorf)
Date: 2021-04-05T21:59:09-07:00
Commit:
https://github.com/php/web-qa/commit/03043322ee4cd3f440d400562de86bf1865bb7e7
Raw diff:
https://github.com/php/web-qa/commit/03043322ee4cd3f440d400562de86bf1865bb7e7.diff
master->main
Changed paths:
M pulls/api.php
Diff:
diff --git a/pulls/api.php b/pulls/api.php
index 58260b7..e21eece 100644
--- a/pulls/api.php
+++ b/pulls/api.php
@@ -31,11 +31,11 @@ function verify_password($user, $pass)
$ctx = stream_context_create(['http' => $opts]);
- $s = @file_get_contents('https://master.php.net/fetch/cvsauth.php', false,
$ctx);
+ $s = @file_get_contents('https://main.php.net/fetch/cvsauth.php', false,
$ctx);
$a = @unserialize($s);
if (!is_array($a)) {
- $errors[] = "Failed to get authentication information.\nMaybe
master is down?\n";
+ $errors[] = "Failed to get authentication information.\nMaybe
main.php.net is down?\n";
return false;
}
if (isset($a['errno'])) {