Commit 8d52ee05 authored by Romain Courteaud's avatar Romain Courteaud

Escape ; character in the URL.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@20037 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c319dc11
......@@ -183,7 +183,7 @@ def DCWorkflowDefinition_listGlobalActions(self, info):
# Patch for ERP5 by JP Smets in order
# to implement worklists and search of local roles
if dict.has_key('local_roles'):
fmt_data._push({'local_roles': join(dict['local_roles'],';')})
fmt_data._push({'local_roles': join(dict['local_roles'],'%3B')})
else:
fmt_data._push({'local_roles': ''})
res.append((id, {'name': qdef.actbox_name % fmt_data,
......
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