From a3ef7d106a9ee3c1be5e11f5f080508742162deb Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 1 Mar 2011 15:46:41 +0300 Subject: [PATCH] cdmClicked: use correct function to parse returned JSON --- viewfeed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viewfeed.js b/viewfeed.js index 26a618f5..f81feb06 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -2019,7 +2019,7 @@ function cdmClicked(event, id) { new Ajax.Request("backend.php", { parameters: query, onComplete: function(transport) { - handle_json_reply(transport); + handle_rpc_json(transport); } }); return true; -- 2.39.5