summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2019-03-12 18:42:54 -0400
committerMitch Jackson <mitch@freeside.biz>2019-03-12 18:43:31 -0400
commit8d4c0d746c208dd1cbc7d1d456d9bad2fa4bd0c0 (patch)
treeb384d0cc932496d97eb66c7e55be7650531883c5 /FS/FS
parenta05f74b064576abc0848248fd136048f95afabe0 (diff)
RT# 82942 Fix typo
Diffstat (limited to 'FS/FS')
-rw-r--r--FS/FS/DBI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/DBI.pm b/FS/FS/DBI.pm
index c6ff125..8719a58 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;