Index: lams_central/web/includes/javascript/pedagogicalPlanner.js =================================================================== diff -u -r40a0a8ce6771a1c5fbc5bd58cca5e74cd296475d -rb5d4a3d0dff42d3d9a26a22c0817e9b866b4b502 --- lams_central/web/includes/javascript/pedagogicalPlanner.js (.../pedagogicalPlanner.js) (revision 40a0a8ce6771a1c5fbc5bd58cca5e74cd296475d) +++ lams_central/web/includes/javascript/pedagogicalPlanner.js (.../pedagogicalPlanner.js) (revision b5d4a3d0dff42d3d9a26a22c0817e9b866b4b502) @@ -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){