missing encoding of id

This commit is contained in:
Ralf Becker 2011-09-06 06:23:54 +00:00
parent 41c61e3979
commit 7540459b58

View File

@ -150,7 +150,7 @@ function nm_action(_action, _senders)
var url = '#'; var url = '#';
if (typeof _action.data.url != 'undefined') if (typeof _action.data.url != 'undefined')
{ {
url = _action.data.url.replace(/(\$|%24)id/,ids); url = _action.data.url.replace(/(\$|%24)id/,encodeURIComponent(ids));
} }
var target = null; var target = null;