Drag+Drop move: propperly escape the roomname so + and friends in roomnames remain...
[citadel.git] / webcit / static / wclib.js
index fb828a6836803435ff0cee8afa5ba64420dbadb1..de48e2efbf8c37a6112109c341586ca6274048c0 100644 (file)
@@ -388,11 +388,12 @@ function addRoomToList(floorUL,room, roomToEmphasize) {
 function roomListDropHandler(target, dropped) {
   if (dropped.getAttribute("citadel:msgid")) {
       var room = getTextContent(target);
+      console.log(room);
       var msgIds = "";
       for(msgId in currentlyMarkedRows) { //defined in summaryview.js
          msgIds += ","+msgId;
          if (msgIds.length > 800) {
-             var mvCommand = encodeURI("g_cmd=MOVE " + msgIds + "|"+room+"|0");
+             var mvCommand = "g_cmd=MOVE%20" + msgIds + "|"+encodeURIComponent(room)+"|0";
              new Ajax.Request("ajax_servcmd", {
                  parameters: mvCommand,
                  method: 'post',
@@ -401,7 +402,7 @@ function roomListDropHandler(target, dropped) {
          }
 
       }
-      var mvCommand = encodeURI("g_cmd=MOVE " + msgIds + "|"+room+"|0");
+      var mvCommand = "g_cmd=MOVE%20" + msgIds + "|"+encodeURIComponent(room)+"|0";
       new Ajax.Request('ajax_servcmd', {
          method: 'post',
          parameters: mvCommand,