mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
ALF-4178: F99 All task and workflow IDs are escaped so they can be used in webscript URLs
Removed unrequired escaping code since Mike fixed the underlying problem in the urlrewriter. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21670 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -97,10 +97,7 @@ function main()
|
||||
if (submissionUrl === null)
|
||||
{
|
||||
// replace characters that can cause issues in URLs
|
||||
// TODO: investigate whether this is better done within the form processor
|
||||
// as it's the form processor that needs to decode the escaped id!
|
||||
var escapedItemId = itemId.replace(':', '_');
|
||||
escapedItemId = escapedItemId.replace('$', '_');
|
||||
|
||||
submissionUrl = '/api/' + itemKind + '/' + escapedItemId + '/formprocessor';
|
||||
}
|
||||
|
Reference in New Issue
Block a user