Skip to content

Commit

Permalink
removing allow_anonymous_edit from form and event cloning views.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoswalt committed Oct 3, 2012
1 parent 0574105 commit c78809b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tendenci/addons/events/utils.py
Expand Up @@ -1148,7 +1148,6 @@ def copy_event(event, user):
allow_anonymous_view = False, allow_anonymous_view = False,
allow_user_view = event.allow_user_view, allow_user_view = event.allow_user_view,
allow_member_view = event.allow_member_view, allow_member_view = event.allow_member_view,
allow_anonymous_edit = event.allow_anonymous_edit,
allow_user_edit = event.allow_user_edit, allow_user_edit = event.allow_user_edit,
allow_member_edit = event.allow_member_edit, allow_member_edit = event.allow_member_edit,
creator = user, creator = user,
Expand Down
1 change: 0 additions & 1 deletion tendenci/apps/forms_builder/forms/views.py
Expand Up @@ -188,7 +188,6 @@ def copy(request, id):
allow_anonymous_view = form_instance.allow_anonymous_view, allow_anonymous_view = form_instance.allow_anonymous_view,
allow_user_view = form_instance.allow_user_view, allow_user_view = form_instance.allow_user_view,
allow_member_view = form_instance.allow_member_view, allow_member_view = form_instance.allow_member_view,
allow_anonymous_edit = form_instance.allow_anonymous_edit,
allow_user_edit = form_instance.allow_user_edit, allow_user_edit = form_instance.allow_user_edit,
allow_member_edit = form_instance.allow_member_edit, allow_member_edit = form_instance.allow_member_edit,
creator = request.user, creator = request.user,
Expand Down

0 comments on commit c78809b

Please sign in to comment.