Skip to content

Commit f4b90c0

Browse files
committed
Nomcom topic responses didn't save respondent because of a missing form creation parameter. Fixed.
- Legacy-Id: 18652
1 parent 8e0a6c2 commit f4b90c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/nomcom/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def feedback(request, year, public):
572572
elif topic:
573573
form = FeedbackForm(data=request.POST,
574574
nomcom=nomcom, user=request.user,
575-
topic=topic)
575+
public=public, topic=topic)
576576
else:
577577
form = None
578578
if form and form.is_valid():

0 commit comments

Comments
 (0)