Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Cette révision appartient à :
akuma06 2017-05-22 00:52:07 +02:00
Parent d4f622a0f6
révision 50c8f52ee8

Voir le fichier

@ -68,7 +68,7 @@ func PostCommentHandler(w http.ResponseWriter, r *http.Request) {
if userPermission.NeedsCaptcha(currentUser) { if userPermission.NeedsCaptcha(currentUser) {
userCaptcha := captcha.Extract(r) userCaptcha := captcha.Extract(r)
if !captcha.Authenticate(userCaptcha) { if !captcha.Authenticate(userCaptcha) {
messages.AddError("errors", "Bad captcham!") messages.AddError("errors", "Bad captcha!")
} }
} }
content := p.Sanitize(r.FormValue("comment")) content := p.Sanitize(r.FormValue("comment"))
@ -104,7 +104,7 @@ func ReportTorrentHandler(w http.ResponseWriter, r *http.Request) {
if userPermission.NeedsCaptcha(currentUser) { if userPermission.NeedsCaptcha(currentUser) {
userCaptcha := captcha.Extract(r) userCaptcha := captcha.Extract(r)
if !captcha.Authenticate(userCaptcha) { if !captcha.Authenticate(userCaptcha) {
messages.AddError("errors", "Bad captchae!") messages.AddError("errors", "Bad captcha!")
} }
} }
if !messages.HasErrors() { if !messages.HasErrors() {