summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-19 14:47:51 +0100
committerAndrew Dolgov <[email protected]>2007-05-19 14:47:51 +0100
commit14b6c54b03f2164f568d25d6d54327117b149fa8 (patch)
tree429af5443d83aa3622db15a3de37c8e484908954 /viewfeed.js
parentce885e215e8084bd3b9e94f6237d33e38078757b (diff)
fix tag quote issues
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 604af1bae..18264eb63 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -727,7 +727,11 @@ function editTagsSave() {
var query = Form.serialize("tag_edit_form");
- xmlhttp_rpc.open("GET", "backend.php?op=rpc&subop=setArticleTags&" + query, true);
+ query = "backend.php?op=rpc&subop=setArticleTags&" + query;
+
+ debug(query);
+
+ xmlhttp_rpc.open("GET", query, true);
xmlhttp_rpc.onreadystatechange=tag_saved_callback;
xmlhttp_rpc.send(null);