mirror of
https://github.com/jech/galene.git
synced 2024-11-09 02:05:59 +01:00
Fix incorrect parsing of wildcard user password.
This commit is contained in:
parent
df274ad6ea
commit
1db15045a3
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ func specialUserHandler(w http.ResponseWriter, r *http.Request, g, pth string, w
|
|||
if pth == "" {
|
||||
userHandler(w, r, g, "", wildcard)
|
||||
return
|
||||
} else if pth == ".password" {
|
||||
} else if pth == "/.password" {
|
||||
passwordHandler(w, r, g, "", wildcard)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue