Initial fix to bug 456: hardwired paths

This commit is contained in:
slef 2003-05-20 19:50:41 +00:00
parent 84361de6e2
commit 160a8ec768
2 changed files with 5 additions and 5 deletions

View file

@ -22,7 +22,7 @@ package C4::test;
use strict; use strict;
require Exporter; require Exporter;
use C4::Context("/etc/koha.conf.tmp"); use C4::Context;
use C4::Catalogue; use C4::Catalogue;
use C4::Biblio; use C4::Biblio;
use MARC::Record; use MARC::Record;

View file

@ -19,10 +19,7 @@ use strict;
use DBI; use DBI;
# Koha modules # Koha modules
use C4::Context("/etc/koha.conf.tmp"); use C4::Context;
# FIXME - /etc/koha.conf might not exist, so shouldn't use
# C4::Context.
# FIXME - The user might be installing a new database, so can't rely # FIXME - The user might be installing a new database, so can't rely
# on /etc/koha.conf anyway. # on /etc/koha.conf anyway.
@ -780,6 +777,9 @@ $sth->finish;
exit; exit;
# $Log$ # $Log$
# Revision 1.48 2003/05/20 19:50:45 slef
# Initial fix to bug 456: hardwired paths
#
# Revision 1.47 2003/05/15 12:23:33 tipaul # Revision 1.47 2003/05/15 12:23:33 tipaul
# adding zipcode and homezipcode into borrowers table (bug #246 # adding zipcode and homezipcode into borrowers table (bug #246
# #