From 86ab0666a0798a9e877a326d99f0d30c6d479679 Mon Sep 17 00:00:00 2001 From: Ryan Higgins Date: Wed, 15 Apr 2009 10:23:21 -0700 Subject: [PATCH] But 3117 : fix typo in C4::Matcher causing compilation failure. Signed-off-by: Galen Charlton --- C4/Matcher.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Matcher.pm b/C4/Matcher.pm index 294c48113b..512562c0e9 100644 --- a/C4/Matcher.pm +++ b/C4/Matcher.pm @@ -788,7 +788,7 @@ sub _get_match_keys { $key = _normalize($key); if ($component->{'length'}){ if (length($key) > $component->{'length'}){ - $key = _normalize(substr($key,$component->{'offset'},$component{'length'})); + $key = _normalize(substr($key,$component->{'offset'},$component->{'length'})); } } } -- 2.20.1