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

Ambrose Li acli at users.sourceforge.net
Mon Jan 20 08:35:33 CET 2003


Update of /cvsroot/koha/koha/C4
In directory sc8-pr-cvs1:/tmp/cvs-serv10903/C4

Modified Files:
	Context.pm 
Log Message:
Removed perl warning


Index: Context.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Context.pm,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** Context.pm	20 Dec 2002 13:54:31 -0000	1.10
--- Context.pm	20 Jan 2003 07:35:31 -0000	1.11
***************
*** 171,175 ****
  
  	# check that the specified config file exists
! 	undef $conf_fname unless (-e $conf_fname);
  	# Figure out a good config file to load if none was specified.
  	if (!defined($conf_fname))
--- 171,175 ----
  
  	# check that the specified config file exists
! 	undef $conf_fname unless (defined $conf_fname && -e $conf_fname);
  	# Figure out a good config file to load if none was specified.
  	if (!defined($conf_fname))





More information about the Koha-cvs mailing list