Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Commit

Permalink
fix sectionpage assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Dietrich committed Apr 4, 2014
1 parent ff1035e commit 4789909
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/adhocracy/controllers/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class PageCreateForm(formencode.Schema):
if_missing=False)
container = validators.StringBool(not_empty=False, if_empty=False,
if_missing=False)
section_page = validators.StringBool(not_empty=False, if_empty=False,
if_missing=False)
sectionpage = validators.StringBool(not_empty=False, if_empty=False,
if_missing=False)
allow_comment = validators.StringBool(not_empty=False, if_empty=False,
if_missing=False)
allow_selection = validators.StringBool(not_empty=False, if_empty=False,
Expand Down Expand Up @@ -92,8 +92,8 @@ class PageUpdateForm(formencode.Schema):
category = formencode.foreach.ForEach(forms.ValidCategoryBadge())
formatting = validators.StringBool(not_empty=False, if_empty=False,
if_missing=False)
section_page = validators.StringBool(not_empty=False, if_empty=False,
if_missing=False)
sectionpage = validators.StringBool(not_empty=False, if_empty=False,
if_missing=False)
allow_comment = validators.StringBool(not_empty=False, if_empty=False,
if_missing=False)
allow_selection = validators.StringBool(not_empty=False, if_empty=False,
Expand Down

0 comments on commit 4789909

Please sign in to comment.