From: Mitch Jackson Date: Tue, 12 Mar 2019 22:42:54 +0000 (-0400) Subject: RT# 82942 Fix typo X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;ds=sidebyside;h=6a29166de4ccb8d3be83a407bb0b909b066592e8;hp=6ec46a33d291dca6f2800bdbc46a5bfc57bb258d;p=freeside.git RT# 82942 Fix typo --- diff --git a/FS/FS/DBI.pm b/FS/FS/DBI.pm index c6ff12561..8719a582f 100644 --- a/FS/FS/DBI.pm +++ b/FS/FS/DBI.pm @@ -49,7 +49,7 @@ sub connect { my $class = shift; my $dbh = $class->SUPER::connect( @_ ); - if ( $_[0] =~ /^DBI::Pg/ ) { + if ( $_[0] =~ /^DBI:Pg/ ) { $dbh->do('SET client_encoding TO UTF8;') or die sprintf 'Error setting client_encoding to UTF8: %s', $dbh->errstr;