@@ -317,10 +317,10 @@ def agenda_add(request, meeting):
317317def agenda_update (request , meeting , schedule ):
318318 # forms are completely useless for update actions that want to
319319 # accept a subset of values.
320- update_dict = QueryDict (request .raw_post_data , encoding = request ._encoding )
320+ update_dict = QueryDict (request .body , encoding = request ._encoding )
321321
322322 #debug.log("99 meeting.agenda: %s / %s / %s" %
323- # (schedule, update_dict, request.raw_post_data ))
323+ # (schedule, update_dict, request.body ))
324324
325325 user = request .user
326326 if has_role (user , "Secretariat" ):
@@ -408,9 +408,9 @@ def meeting_get(request, meeting):
408408@role_required ('Secretariat' )
409409def meeting_update (request , meeting ):
410410 # at present, only the official agenda can be updated from this interface.
411- update_dict = QueryDict (request .raw_post_data , encoding = request ._encoding )
411+ update_dict = QueryDict (request .body , encoding = request ._encoding )
412412
413- #debug.log("1 meeting.agenda: %s / %s / %s" % (meeting.agenda, update_dict, request.raw_post_data ))
413+ #debug.log("1 meeting.agenda: %s / %s / %s" % (meeting.agenda, update_dict, request.body ))
414414 if "agenda" in update_dict :
415415 value = update_dict ["agenda" ]
416416 #debug.log("4 meeting.agenda: %s" % (value))
0 commit comments