Index: lams_central/web/includes/javascript/pedagogicalPlanner.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/pedagogicalPlanner.js,v diff -u -r1.17 -r1.18 --- lams_central/web/includes/javascript/pedagogicalPlanner.js 10 Aug 2010 07:55:13 -0000 1.17 +++ lams_central/web/includes/javascript/pedagogicalPlanner.js 19 Oct 2010 17:08:11 -0000 1.18 @@ -162,7 +162,11 @@ var openAuthorURL = "home.do?method=author&learningDesignID=" + learningDesignId; if (requestSrc != "") openAuthorURL += "&requestSrc=" + requestSrc; - if (notifyCloseURL != "") openAuthorURL += "¬ifyCloseURL=" + notifyCloseURL; + if (notifyCloseURL != "") { + //to prevent losing of query parameters change '&' into '%26' + notifyCloseURL = notifyCloseURL.replace (/&/g, '%26'); + openAuthorURL += "¬ifyCloseURL=" + notifyCloseURL; + } document.location.href = openAuthorURL; } else if (actionAfterCompleted==ACTION_EXPORT){