koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] CVS: koha/C4 Auth.pm,1.10,1.11


From: Andrew Arensburger
Subject: [Koha-cvs] CVS: koha/C4 Auth.pm,1.10,1.11
Date: Sat, 05 Oct 2002 02:48:37 -0700

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

Modified Files:
        Auth.pm 
Log Message:
Merged with arensb-context branch: use C4::Context->dbh instead of
&C4Connect, and generally prefer C4::Context over C4::Database.


Index: Auth.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Auth.pm,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** Auth.pm     14 Aug 2002 18:12:51 -0000      1.10
--- Auth.pm     5 Oct 2002 09:48:35 -0000       1.11
***************
*** 24,28 ****
  
  require Exporter;
! use C4::Database;
  
  use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
--- 24,28 ----
  
  require Exporter;
! use C4::Context;
  
  use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
***************
*** 52,56 ****
      my $message='';
  
!     my $dbh=C4Connect();
      my $sth=$dbh->prepare("select userid,ip,lasttime from sessions where 
sessionid=?");
      $sth->execute($sessionID);
--- 52,56 ----
      my $message='';
  
!     my $dbh = C4::Context->dbh;
      my $sth=$dbh->prepare("select userid,ip,lasttime from sessions where 
sessionid=?");
      $sth->execute($sessionID);
***************
*** 190,193 ****
--- 190,194 ----
        }
      }
+     # FIXME - There's already a $sth in this scope.
      my $sth=$dbh->prepare("select password from borrowers where 
cardnumber=?");
      $sth->execute($userid);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]