[LON-CAPA-cvs] cvs: loncom /auth simpleauthen.pm

albertel lon-capa-cvs@mail.lon-capa.org
Wed, 05 Apr 2006 22:37:45 -0000


albertel		Wed Apr  5 18:37:45 2006 EDT

  Added files:                 
    /loncom/auth	simpleauthen.pm 
  Log:
  - not sure if this is needed anymore, but just in case adding it so I don't lose it.
  
  
  

Index: loncom/auth/simpleauthen.pm
+++ loncom/auth/simpleauthen.pm
package Apache::simpleauthen;

use strict;
use Apache::Constants qw(:common);
use Apache::lonnet;

sub handler {
    my ($r) = @_;
    return FORBIDDEN;
}

1;