From 34edf2380c44816702fbc970b3ccba6cba36aff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 16 Dec 2025 14:58:11 +0100 Subject: [PATCH] Fix version selector's historical URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Regression because the function signature changed in #2261, but this call was not updated. Signed-off-by: Kévin Commaille --- assets/js/versions.template.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/versions.template.js b/assets/js/versions.template.js index 1554ad26..01a3ffc8 100644 --- a/assets/js/versions.template.js +++ b/assets/js/versions.template.js @@ -110,5 +110,5 @@ fetch(url) } // For historical versions, simply link to the changelog - appendVersion(ul, "historical", '{{ (site.GetPage "changelog/historical").RelPermalink }}'); + appendVersion(ul, "historical", "historical", '{{ (site.GetPage "changelog/historical").RelPermalink }}'); });