master
nathaniel smith 2015-08-01 16:59:46 -07:00
parent fc0613985b
commit 54cd687635
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ def post_guestbook():
message = request.form['message'][0:400]
name = request.form['name'][0:140]
captcha = request.form['hmm']
if captcha == "scriz":
if captcha == "scrop":
save_post(name, message)
return redirect("/guestbook")