From 58ef28e9146d901094b6ac4cb85c120f2cf3c737 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Mon, 27 Jul 2020 21:12:20 +0200 Subject: [PATCH] [ticket/16557] Generate https instead of http links to tracker PHPBB3-16557 --- build/build_changelog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build_changelog.php b/build/build_changelog.php index 5967e0a135..5dd3449de3 100755 --- a/build/build_changelog.php +++ b/build/build_changelog.php @@ -42,7 +42,7 @@ foreach ($xml->xpath('//item') as $item) { $key = (string) $item->key; - $keyUrl = 'http://tracker.phpbb.com/browse/' . $key; + $keyUrl = 'https://tracker.phpbb.com/browse/' . $key; $keyLink = '' . $key . ''; $value = str_replace($key, $keyLink, htmlspecialchars($item->title));