Commit 80c1103d authored by Romain Courteaud's avatar Romain Courteaud

Remove FileUpload from Message parameters.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30473 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 39d09001
......@@ -101,6 +101,9 @@ for k, v in request.other.items():\n
# XXX proxy fields stores a cache in request.other that cannot be pickled\n
if k.startswith(\'field__proxyfield\'):\n
continue\n
# Remove FileUpload parameters\n
elif getattr(v, \'headers\', \'\'):\n
continue\n
request_other[k] = v\n
\n
localizer_language = portal.Localizer.get_selected_language()\n
......
63
\ No newline at end of file
67
\ No newline at end of file
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