fix mangling of stats URLs
Alan Pearce alan@alanpearce.eu
Wed, 24 Jul 2024 15:35:15 +0200
1 files changed, 5 insertions(+), 1 deletions(-)
jump to
M templates/page.templ → templates/page.templ
@@ -87,7 +87,11 @@ </body> </html> } -func mkURL(u config.URL, path string, title string) string { +func mkURL(original config.URL, path string, title string) string { + ou := *original.URL + u := config.URL{ + URL: &ou, + } q := url.Values{} q.Add("p", path) q.Add("t", title)