[Koha-cvs] CVS: koha/C4 Auth.pm,1.9.2.2,1.9.2.3

Steve Tonnesen tonnesen at users.sourceforge.net
Thu Jul 11 21:48:24 CEST 2002


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

Modified Files:
      Tag: rel-1-2
	Auth.pm 
Log Message:
Removed warning lines


Index: Auth.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Auth.pm,v
retrieving revision 1.9.2.2
retrieving revision 1.9.2.3
diff -C2 -r1.9.2.2 -r1.9.2.3
*** Auth.pm	11 Jul 2002 19:43:10 -0000	1.9.2.2
--- Auth.pm	11 Jul 2002 19:48:22 -0000	1.9.2.3
***************
*** 166,170 ****
  
      my ($dbh, $userid, $password) = @_;
-     warn "Checking $userid $password";
      my $sth=$dbh->prepare("select password from borrowers where userid=?");
      $sth->execute($userid);
--- 166,169 ----
***************
*** 184,188 ****
      }
      my $configfile=configfile();
-     warn "$userid $configfile->{'user'} $password $configfile->{'pass'}";
      if ($userid eq $configfile->{'user'} && $password eq $configfile->{'pass'}) {
          # Koha superuser account
--- 183,186 ----





More information about the Koha-cvs mailing list