--- loncom/auth/lontokacc.pm 2003/08/01 15:46:10 1.8 +++ loncom/auth/lontokacc.pm 2003/08/01 17:25:40 1.9 @@ -1,7 +1,7 @@ # The LearningOnline Network # Access Handler for User File Transfers # -# $Id: lontokacc.pm,v 1.8 2003/08/01 15:46:10 www Exp $ +# $Id: lontokacc.pm,v 1.9 2003/08/01 17:25:40 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -45,7 +45,6 @@ sub handler { return FORBIDDEN; } if ($reqhost eq 'localhost.localdomain') { - $r->register_cleanup(\&removefile); return OK; } my $readline; @@ -59,7 +58,6 @@ sub handler { while ($readline=<$fh>) { my ($id,$domain,$role,$name,$ip)=split(/:/,$readline); if ($name =~ /$reqhost/i) { - $r->register_cleanup(\&removefile); return OK; } }