Fix API broken

This commit is contained in:
Unknwon 2014-10-18 23:42:43 -04:00
parent 3abc41ccca
commit 146c8efee3
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ func SignUpPost(ctx *middleware.Context, cpt *captcha.Captcha, form auth.Registe
return
}
if !cpt.VerifyReq(ctx.Req.Request) {
if !cpt.VerifyReq(ctx.Req) {
ctx.Data["Err_Captcha"] = true
ctx.RenderWithErr(ctx.Tr("form.captcha_incorrect"), SIGNUP, &form)
return