X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2FUID.pm;fp=FS%2FFS%2FUID.pm;h=dd4850fb285b6bbb4e039799e6c8c5a75f39f19e;hp=a94e90f8619f4a8677ed8cf4ba0d3289bfd43fa2;hb=0ea259968caa20ba0833f07cfc26adc85dff2800;hpb=53aceae6c3023e7971ef80d55e62c47bf09a2092 diff --git a/FS/FS/UID.pm b/FS/FS/UID.pm index a94e90f86..dd4850fb2 100644 --- a/FS/FS/UID.pm +++ b/FS/FS/UID.pm @@ -114,13 +114,10 @@ sub forksuidsetup { warn "$me forksuidsetup deciding upon config system to use\n" if $DEBUG; - my $sth = ''; - if ( dbdef->table('conf') - and $sth = $dbh->prepare("SELECT COUNT(*) FROM conf") - and $sth->execute - ) - { + if ( ! $FS::Schema::setup_hack && dbdef->table('conf') ) { + 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) {