Commit 3323f31f authored by Romain Courteaud's avatar Romain Courteaud

erp5_forge: use Base_redirect

parent 0b8f3e2a
...@@ -390,9 +390,9 @@ class Git(WorkingCopy): ...@@ -390,9 +390,9 @@ class Git(WorkingCopy):
portal_status_message = translateString( portal_status_message = translateString(
'Files committed successfully in revision ${revision}', 'Files committed successfully in revision ${revision}',
mapping=dict(revision=head)) mapping=dict(revision=head))
return request.RESPONSE.redirect('%s/view?%s' % ( return context.Base_redirect('view', keep_items={
context.absolute_url_path(), 'portal_status_message': portal_status_message
make_query(portal_status_message=portal_status_message))) })
def log(self, path='.'): def log(self, path='.'):
log = [] log = []
......
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