--- loncom/lonnet/perl/lonnet.pm 2023/11/03 01:12:17 1.1517 +++ loncom/lonnet/perl/lonnet.pm 2023/11/17 17:02:22 1.1518 @@ -1,7 +1,7 @@ # The LearningOnline Network # TCP networking package # -# $Id: lonnet.pm,v 1.1517 2023/11/03 01:12:17 raeburn Exp $ +# $Id: lonnet.pm,v 1.1518 2023/11/17 17:02:22 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -8240,7 +8240,6 @@ sub usertools_access { } elsif ($context eq 'authordefaults') { %tools = ( webdav => 1, - editors => 1, ); } else { %tools = ( @@ -8267,8 +8266,6 @@ sub usertools_access { } elsif ($context eq 'authordefaults') { if ($tool eq 'webdav') { return $env{'environment.availabletools.'.$tool}; - } elsif ($tool eq 'editors') { - return $env{'environment.authoreditors'}; } } else { return $env{'environment.availabletools.'.$tool}; @@ -8282,8 +8279,6 @@ sub usertools_access { } elsif ($context eq 'authordefaults') { if ($tool eq 'webdav') { $envkey = 'tools.'.$tool; - } elsif ($tool eq 'editors') { - $envkey = 'author'.$tool; } } else { $envkey = $context.'.'.$tool;