[freeside-commits] freeside/FS/FS UID.pm,1.40,1.41
Ivan,,,
ivan at wavetail.420.am
Sun Mar 16 01:04:06 PDT 2008
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv22994
Modified Files:
UID.pm
Log Message:
goodness, i hope this fixes the bootstrapping
Index: UID.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/UID.pm,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- UID.pm 16 Mar 2008 07:25:52 -0000 1.40
+++ UID.pm 16 Mar 2008 08:04:04 -0000 1.41
@@ -108,25 +108,26 @@
warn "$me forksuidsetup connected to database with handle $dbh\n" if $DEBUG;
warn "$me forksuidsetup loading schema\n" if $DEBUG;
- use FS::Schema qw(reload_dbdef);
+ use FS::Schema qw(reload_dbdef dbdef);
reload_dbdef("$conf_dir/dbdef.$datasrc")
unless $FS::Schema::setup_hack;
warn "$me forksuidsetup deciding upon config system to use\n" if $DEBUG;
- my $confcount = 0;
+ if ( dbdef->table('conf') ) {
- my $sth = $dbh->prepare("SELECT COUNT(*) FROM conf");
- if ( $sth ) {
- if ( $sth->execute ) {
- $confcount = $sth->fetchrow_arrayref->[0];
+ my $sth = $dbh->prepare("SELECT COUNT(*) FROM conf") or die $dbh->errstr;
+ $sth->execute or die $sth->errstr;
+ my $confcount = $sth->fetchrow_arrayref->[0];
+
+ if ($confcount) {
+ $use_confcompat = 0;
+ }else{
+ warn "NO CONFIGURATION RECORDS FOUND";
}
- }
- if ($confcount) {
- $use_confcompat = 0;
- }else{
- warn "NO CONFIGURATION RECORDS FOUND";
+ } else {
+ warn "NO CONFIGURATION TABLE FOUND";
}
unless ( $callback_hack ) {
More information about the freeside-commits
mailing list