--- loncom/auth/lonroles.pm 2022/07/01 04:05:16 1.366 +++ loncom/auth/lonroles.pm 2022/10/05 16:11:26 1.367 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # User Roles Screen # -# $Id: lonroles.pm,v 1.366 2022/07/01 04:05:16 raeburn Exp $ +# $Id: lonroles.pm,v 1.367 2022/10/05 16:11:26 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1130,6 +1130,12 @@ ENDCLOSE $redirect_url .= $where; } $redirect_url .= '/'; + if ($env{'form.orgurl'} =~ /^\Q$redirect_url\E/) { + my ($path) = ($env{'form.orgurl'} =~ m{^(.+)/[^/]+$}); + if (($path ne '') && (-e $Apache::lonnet::perlvar{'lonDocRoot'}.$path)) { + $redirect_url = $env{'form.orgurl'}; + } + } &redirect_user($r,&mt('Entering Authoring Space'), $redirect_url); return OK;