Fix
Cette révision appartient à :
Parent
d4f622a0f6
révision
50c8f52ee8
1 fichiers modifiés avec 2 ajouts et 2 suppressions
|
@ -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() {
|
||||||
|
|
Référencer dans un nouveau ticket