From 7540459b58f5deaf66e77bddf20d59e1837c7f74 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 6 Sep 2011 06:23:54 +0000 Subject: [PATCH] missing encoding of id --- etemplate/js/nextmatch_action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/js/nextmatch_action.js b/etemplate/js/nextmatch_action.js index b0bfeefa42..7329cf3742 100644 --- a/etemplate/js/nextmatch_action.js +++ b/etemplate/js/nextmatch_action.js @@ -150,7 +150,7 @@ function nm_action(_action, _senders) var url = '#'; 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;