Index: openacs-4/packages/proctoring-support/lib/proctoring-display.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/proctoring-support/lib/Attic/proctoring-display.adp,v diff -u -N -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/proctoring-support/lib/proctoring-display.adp 31 Mar 2021 15:47:25 -0000 1.1.2.2 +++ openacs-4/packages/proctoring-support/lib/proctoring-display.adp 31 Mar 2021 17:19:20 -0000 1.1.2.3 @@ -160,7 +160,7 @@ function getFileURL(e) { var fileTokens = e.file.split("/"); - return "@this_url@&file=" + fileTokens[fileTokens.length - 1]; + return "@user_url@&file=" + fileTokens[fileTokens.length - 1]; } function createEvent(e) { var event = template.cloneNode(true); @@ -328,7 +328,7 @@ } } oReq.addEventListener("load", reqListener); - oReq.open("POST", window.location.pathname); + oReq.open("POST", '@base_url@'); oReq.send(formData); }); }