From: Jason Stephenson Date: Wed, 12 Aug 2020 19:49:29 +0000 (-0400) Subject: Fix typo in previous commit X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=76a59f666e56487e82762e15c1d79de07ad2db8c;p=working%2FEvergreen.git Fix typo in previous commit I'll rebase this out before adding the pullrequest. --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/SIP.pm b/Open-ILS/src/perlmods/lib/OpenILS/SIP.pm index ad1a50293d..5393765994 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/SIP.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/SIP.pm @@ -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};