Fix missing error enforcement on comments and reports
Cette révision appartient à :
Parent
fd94746eed
révision
8e2c643a34
1 fichiers modifiés avec 3 ajouts et 0 suppressions
|
@ -41,11 +41,13 @@ func PostCommentHandler(w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
if strings.TrimSpace(r.FormValue("comment")) == "" {
|
||||
http.Error(w, "comment empty", 406)
|
||||
return
|
||||
}
|
||||
|
||||
userCaptcha := captcha.Extract(r)
|
||||
if !captcha.Authenticate(userCaptcha) {
|
||||
http.Error(w, "bad captcha", 403)
|
||||
return
|
||||
}
|
||||
currentUser := GetUser(r)
|
||||
content := p.Sanitize(r.FormValue("comment"))
|
||||
|
@ -76,6 +78,7 @@ func ReportTorrentHandler(w http.ResponseWriter, r *http.Request) {
|
|||
userCaptcha := captcha.Extract(r)
|
||||
if !captcha.Authenticate(userCaptcha) {
|
||||
http.Error(w, "bad captcha", 403)
|
||||
return
|
||||
}
|
||||
currentUser := GetUser(r)
|
||||
|
||||
|
|
Référencer dans un nouveau ticket