[Koha-cvs] CVS: koha/updater updatedatabase,1.18,1.18.2.1

Andrew Arensburger arensb at users.sourceforge.net
Fri Oct 4 04:46:02 CEST 2002


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

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


Index: updatedatabase
===================================================================
RCS file: /cvsroot/koha/koha/updater/updatedatabase,v
retrieving revision 1.18
retrieving revision 1.18.2.1
diff -C2 -r1.18 -r1.18.2.1
*** updatedatabase	24 Sep 2002 13:50:55 -0000	1.18
--- updatedatabase	4 Oct 2002 02:46:00 -0000	1.18.2.1
***************
*** 20,24 ****
  
  # Koha modules
! use C4::Database;
  
  my $debug=0;
--- 20,24 ----
  
  # Koha modules
! use C4::Context;
  
  my $debug=0;
***************
*** 212,216 ****
  #-------------------
  # Initialize
! my $dbh=C4Connect;
  
  # Start checking
--- 212,216 ----
  #-------------------
  # Initialize
! my $dbh = C4::Context->dbh;
  
  # Start checking
***************
*** 401,409 ****
  
  $sth->finish;
- $dbh->disconnect;
  
  exit;
  
  # $Log$
  # Revision 1.18  2002/09/24 13:50:55  tipaul
  # long WAS the road to 1.3.0...
--- 401,412 ----
  
  $sth->finish;
  
  exit;
  
  # $Log$
+ # Revision 1.18.2.1  2002/10/04 02:46:00  arensb
+ # Use C4::Connect instead of C4::Database, C4::Connect->dbh instead
+ # C4Connect.
+ #
  # Revision 1.18  2002/09/24 13:50:55  tipaul
  # long WAS the road to 1.3.0...





More information about the Koha-cvs mailing list