1
0

Added missing space between / and status text.

This commit is contained in:
Alexander Andreev 2023-06-04 18:06:54 +04:00
parent f83c17d5b3
commit 339fbe354d
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -178,7 +178,7 @@ func SitemapXml(w http.ResponseWriter, r *http.Request) {
} }
func Error(w http.ResponseWriter, code int, reason, message string) { func Error(w http.ResponseWriter, code int, reason, message string) {
web.ErrorXXX("/"+http.StatusText(code), reason, message, code, w) web.ErrorXXX("/ "+http.StatusText(code), reason, message, code, w)
} }
func cleanupNewlines(text string) (out string) { func cleanupNewlines(text string) (out string) {