--- loncom/xml/lonxml.pm 2024/01/25 23:37:14 1.568 +++ loncom/xml/lonxml.pm 2024/03/31 01:50:18 1.569 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # XML Parser Module # -# $Id: lonxml.pm,v 1.568 2024/01/25 23:37:14 raeburn Exp $ +# $Id: lonxml.pm,v 1.569 2024/03/31 01:50:18 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1710,7 +1710,11 @@ function seteditmode(form,editor) { var url = new URL(document.location.href); window.location = url.protocol+'//'+url.hostname+'/daxepage'+url.pathname; } else { - form.editmode.value = editor; + if (editor == 'edit') { + form.editmode.value = editor; + } else { + form.editmode.value = ''; + } form.submit(); } }