Commit 6a83d601 authored by Jérome Perrin's avatar Jérome Perrin

Matrixbox: do not leave garbage in REQUEST['cell']

parent d6df4077
......@@ -476,6 +476,11 @@ class MatrixBoxWidget(Widget.Widget):
if render_format == 'list':
list_result.append(list_result_tab)
# XXX Does not leave garbage in REQUEST['cell'], because some other
# fields also use that key...
REQUEST.other.pop('cell', None)
REQUEST.other.pop('cell_index', None)
if render_format == 'list':
return list_result
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment