Index: lams_central/web/lams_authoring.swf =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/lams_authoring.swf,v diff -u -r1.524 -r1.525 Binary files differ Index: lams_central/web/lams_authoring_library.swf =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/lams_authoring_library.swf,v diff -u -r1.424 -r1.425 Binary files differ Index: lams_flash/src/common/flash/org/lamsfoundation/lams/common/ws/Workspace.as =================================================================== RCS file: /usr/local/cvsroot/lams_flash/src/common/flash/org/lamsfoundation/lams/common/ws/Workspace.as,v diff -u -r1.5 -r1.6 --- lams_flash/src/common/flash/org/lamsfoundation/lams/common/ws/Workspace.as 3 Feb 2009 05:48:10 -0000 1.5 +++ lams_flash/src/common/flash/org/lamsfoundation/lams/common/ws/Workspace.as 20 Mar 2009 03:12:57 -0000 1.6 @@ -111,7 +111,9 @@ var callback:Function = Proxy.create(this,recievedFolderContents); if(funcToCall != undefined || funcToCall != null){ callback = funcToCall; } var uid:Number = Config.getInstance().userID; - ApplicationParent.getInstance().getComms().getRequest('workspace.do?method=getFolderContents&folderID='+folderID+'&mode='+Config.getInstance().mode+'&userID='+uid,callback, false); + var nowTime:Number = new Date().getTime(); + //dummyVar added to make request unique because IE was using a cached version of the workspace tree after renaming/deleting a sequence and not refreshing the tree as it should have been doing + ApplicationParent.getInstance().getComms().getRequest('workspace.do?method=getFolderContents&folderID='+folderID+'&mode='+Config.getInstance().mode+'&userID='+uid+'&dummyVar='+nowTime,callback, false); } /**