Commit 1db15045 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix incorrect parsing of wildcard user password.

parent df274ad6
...@@ -300,7 +300,7 @@ func specialUserHandler(w http.ResponseWriter, r *http.Request, g, pth string, w ...@@ -300,7 +300,7 @@ func specialUserHandler(w http.ResponseWriter, r *http.Request, g, pth string, w
if pth == "" { if pth == "" {
userHandler(w, r, g, "", wildcard) userHandler(w, r, g, "", wildcard)
return return
} else if pth == ".password" { } else if pth == "/.password" {
passwordHandler(w, r, g, "", wildcard) passwordHandler(w, r, g, "", wildcard)
return return
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment