Author: Jordi Kroon (jordikroon)
Committer: Derick Rethans (derickr)
Date: 2026-04-15T03:50:09-04:00
Commit: fix: update museum.php.net links to https · php/web-php@bcd1b8d · GitHub
Raw diff: https://github.com/php/web-php/commit/bcd1b8d876340a5ac2d0a4d79ffcc19ddac7069e.diff
fix: update museum.php.net links to https
Changed paths:
M manual/php3.php
M releases/index.php
Diff:
diff --git a/manual/php3.php b/manual/php3.php
index 313e8c6c44..e2a985401a 100644
--- a/manual/php3.php
+++ b/manual/php3.php
@@ -29,7 +29,7 @@
</p>
<p>
- See the <a href="http://museum.php.net/">PHP Museum</a> for downloads, and
+ See the <a href="https://museum.php.net/">PHP Museum</a> for downloads, and
also read the <a href="PHP: History of PHP and Related Projects - Manual; for further
information about PHP 3.
</p>
diff --git a/releases/index.php b/releases/index.php
index c90c4b3b59..6276162a5a 100644
--- a/releases/index.php
+++ b/releases/index.php
@@ -140,7 +140,7 @@
</p>
<div class="panel">
- <a href="http://museum.php.net/">PHP Museum</a>
+ <a href="https://museum.php.net/">PHP Museum</a>
</div>
<div class="panel">
@@ -237,11 +237,11 @@ function mk_rel(int $major,
if (!isset($src["filename"])) {
continue;
}
- printf('<li><a href="http://museum.php.net/php%d/%s">%s</a></li>',
+ printf('<li><a href="https://museum.php.net/php%d/%s">%s</a></li>',
$major, $src["filename"], $src["name"]);
}
foreach ($windows as $src) {
- printf('<li><a href="http://museum.php.net/%s/%s">%s</a></li>',
+ printf('<li><a href="https://museum.php.net/%s/%s">%s</a></li>',
($major == 5 ? "php5" : "win32"), $src["filename"], $src["name"]);
}
}