Commit 801f63cc authored by Julien Muchembled's avatar Julien Muchembled

Fix DocumentProxyMixin.index_html

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@34020 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 7a3d253f
......@@ -237,9 +237,9 @@ class DocumentProxyMixin:
security.declareProtected(Permissions.AccessContentsInformation,
'index_html' )
def index_html(self, REQUEST, RESPONSE, format=None, **kw):
def index_html(self, REQUEST, RESPONSE, **kw):
""" Only a proxy method """
self.getProxiedDocument().index_html(REQUEST, RESPONSE, format, **kw)
return self.getProxiedDocument().index_html(REQUEST, RESPONSE, **kw)
security.declareProtected(Permissions.AccessContentsInformation,
'getProxiedDocument' )
......
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