diff options
| author | Mitch Jackson <mitch@freeside.biz> | 2019-03-12 18:42:54 -0400 |
|---|---|---|
| committer | Mitch Jackson <mitch@freeside.biz> | 2019-03-12 18:47:49 -0400 |
| commit | 693a77e85869cf8914d1ba4027b3262aca7353ac (patch) | |
| tree | bf30d9a5f09ba75fd4dbc19391d138e72e8574dd | |
| parent | 038ad47addd4168c74165c4a79051e4d2599258e (diff) | |
RT# 82942 Fix typo
| -rw-r--r-- | FS/FS/DBI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
