From 76a59f666e56487e82762e15c1d79de07ad2db8c Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Wed, 12 Aug 2020 15:49:29 -0400 Subject: [PATCH] Fix typo in previous commit I'll rebase this out before adding the pullrequest. --- Open-ILS/src/perlmods/lib/OpenILS/SIP.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}; -- 2.11.0