Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Merge pull request #142 from bakape/fix-getid-args

Fix captcha.GetID() args
Cette révision appartient à :
Eliot Whalan 2017-05-07 23:50:31 +10:00 révisé par GitHub
révision 4814fff3dc

Voir le fichier

@ -18,7 +18,7 @@ import (
func UserRegisterFormHandler(w http.ResponseWriter, r *http.Request) {
b := form.RegistrationForm{}
modelHelper.BindValueForm(&b, r)
b.CaptchaID = captcha.GetID(r.RemoteAddr)
b.CaptchaID = captcha.GetID()
languages.SetTranslation("en-us", viewRegisterTemplate)
htv := UserRegisterTemplateVariables{b, NewSearchForm(), Navigation{}, r.URL, mux.CurrentRoute(r)}
err := viewRegisterTemplate.ExecuteTemplate(w, "index.html", htv)