cdmClicked: use correct function to parse returned JSON

This commit is contained in:
Andrew Dolgov 2011-03-01 15:46:41 +03:00
parent aeaa69919f
commit a3ef7d106a
1 changed files with 1 additions and 1 deletions

View File

@ -2019,7 +2019,7 @@ function cdmClicked(event, id) {
new Ajax.Request("backend.php", { new Ajax.Request("backend.php", {
parameters: query, parameters: query,
onComplete: function(transport) { onComplete: function(transport) {
handle_json_reply(transport); handle_rpc_json(transport);
} }); } });
return true; return true;