Skip to content

Commit

Permalink
Merge pull request #264 from B2SHARE/fix_abuse_form_verify
Browse files Browse the repository at this point in the history
Update abuse_form.py
  • Loading branch information
emanueldima committed Apr 16, 2014
2 parents 7c7a6ea + 7ae6022 commit d458c67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simplestore/lib/abuse_form.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def abuse_submit(request):
if(affiliation == '' or len(affiliation) > 256):
return render_template('abuse_form.html',warning_msg="Affiliation is missing")

if(email == '' or validate_email(email,verify=True) == False):
if(email == '' or validate_email(email,verify=False) == False):
return render_template('abuse_form.html',warning_msg="Email address missing or format is invalid")

if(street_address == '' or len(street_address) > 256):
Expand Down

0 comments on commit d458c67

Please sign in to comment.