|
From: Chris W. <la...@us...> - 2001-10-24 02:51:27
|
Update of /cvsroot/openinteract/SPOPS/SPOPS/DBI
In directory usw-pr-cvs1:/tmp/cvs-serv26493
Modified Files:
MySQL.pm
Log Message:
got rid of -w error ('Use of uninitialized value in string eq...')
Index: MySQL.pm
===================================================================
RCS file: /cvsroot/openinteract/SPOPS/SPOPS/DBI/MySQL.pm,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** MySQL.pm 2001/10/22 06:26:26 1.12
--- MySQL.pm 2001/10/24 02:51:24 1.13
***************
*** 41,45 ****
my ( $class ) = @_;
my $CONFIG = $class->CONFIG;
! return ( OK, undef ) unless ( $CONFIG->{find_defaults} eq 'yes' );
my $dbh = $class->global_datasource_handle( $CONFIG->{datasource} );
unless ( $dbh ) {
--- 41,45 ----
my ( $class ) = @_;
my $CONFIG = $class->CONFIG;
! return ( OK, undef ) unless ( $CONFIG->{find_defaults} and $CONFIG->{find_defaults} eq 'yes' );
my $dbh = $class->global_datasource_handle( $CONFIG->{datasource} );
unless ( $dbh ) {
|