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:
Gavin Cornwell
2010-08-06 20:08:13 +00:00
parent a013f35828
commit eaee7edec3

View File

@@ -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';
}