Fix typo in previous commit user/dyrcona/lp1889628-sip2-authenticate-with-username
authorJason Stephenson <jason@sigio.com>
Wed, 12 Aug 2020 19:49:29 +0000 (15:49 -0400)
committerJason Stephenson <jason@sigio.com>
Wed, 12 Aug 2020 19:49:29 +0000 (15:49 -0400)
I'll rebase this out before adding the pullrequest.

Open-ILS/src/perlmods/lib/OpenILS/SIP.pm

index ad1a502..5393765 100644 (file)
@@ -251,7 +251,7 @@ sub get_ou_setting {
 sub get_barcode_regex {
     my $self = shift;
     if (!defined($self->{bc_regex})) {
-        $self->{bc_regex} = Sself->get_ou_setting('opac.barcode_regex');
+        $self->{bc_regex} = $self->get_ou_setting('opac.barcode_regex');
         $self->{bc_regex} = '^\d' unless ($self->{bc_regex});
     }
     return $self->{bc_regex};