From a7e8bbce1e90ab5809e03f205737b677be56a8a6 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Wed, 14 Nov 2018 10:39:20 +0000 Subject: [PATCH] Set the URL prefix on the logout page --- server/http.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/http.go b/server/http.go index 7256f63..3bcc828 100644 --- a/server/http.go +++ b/server/http.go @@ -250,6 +250,7 @@ func (h *Server) handleLogout(w http.ResponseWriter, req *http.Request, session data := map[string]interface{}{ "CSRFField": csrf.TemplateField(req), + "URLPrefix": h.urlPrefix, "Services": svcs, "IsPOST": false, } -- GitLab