[Koha-cvs] CVS: koha moremember.pl,1.16,1.16.2.1

Andrew Arensburger arensb at users.sourceforge.net
Fri Oct 4 04:21:03 CEST 2002


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

Modified Files:
      Tag: arensb-context
	moremember.pl 
Log Message:
Use C4::Connect instead of C4::Database, C4::Connect->dbh instead
C4Connect.


Index: moremember.pl
===================================================================
RCS file: /cvsroot/koha/koha/moremember.pl,v
retrieving revision 1.16
retrieving revision 1.16.2.1
diff -C2 -r1.16 -r1.16.2.1
*** moremember.pl	30 Sep 2002 00:53:27 -0000	1.16
--- moremember.pl	4 Oct 2002 02:21:01 -0000	1.16.2.1
***************
*** 30,33 ****
--- 30,34 ----
  
  use strict;
+ use C4::Context;
  use C4::Output;
  use CGI;
***************
*** 38,44 ****
  use C4::Circulation::Circ2;
  use C4::Koha;
- use C4::Database;
  
! my $dbh=C4Connect;
  
  my $input = new CGI;
--- 39,44 ----
  use C4::Circulation::Circ2;
  use C4::Koha;
  
! my $dbh = C4::Context->dbh;
  
  my $input = new CGI;
***************
*** 357,361 ****
  print endmenu('member');
  print endpage();
- 
- 
- $dbh->disconnect;
--- 357,358 ----





More information about the Koha-cvs mailing list