[Koha-cvs] CVS: koha/C4 Auth.pm,1.9.2.5,1.9.2.6

Steve Tonnesen tonnesen at users.sourceforge.net
Sun Jul 14 21:37:15 CEST 2002


Update of /cvsroot/koha/koha/C4
In directory usw-pr-cvs1:/tmp/cvs-serv20411

Modified Files:
      Tag: rel-1-2
	Auth.pm 
Log Message:
Used wrong environment variable for basic authentication support


Index: Auth.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Auth.pm,v
retrieving revision 1.9.2.5
retrieving revision 1.9.2.6
diff -C2 -r1.9.2.5 -r1.9.2.6
*** Auth.pm	11 Jul 2002 20:48:23 -0000	1.9.2.5
--- Auth.pm	14 Jul 2002 19:37:13 -0000	1.9.2.6
***************
*** 25,29 ****
      # $authnotrequired will be set for scripts which will run without authentication
      my $authnotrequired=shift;
!     if (my $userid=$ENV{'REMOTE_USERNAME'}) {
  	# Using Basic Authentication, no cookies required
  	my $cookie=$query->cookie(-name => 'sessionID',
--- 25,29 ----
      # $authnotrequired will be set for scripts which will run without authentication
      my $authnotrequired=shift;
!     if (my $userid=$ENV{'REMOTE_USER'}) {
  	# Using Basic Authentication, no cookies required
  	my $cookie=$query->cookie(-name => 'sessionID',





More information about the Koha-cvs mailing list