From 7f677474e215998315ed6e9274845779e95c1464 Mon Sep 17 00:00:00 2001 From: berick Date: Thu, 26 May 2011 15:34:07 -0400 Subject: [PATCH] Repaired syntax errors in SuperCat.pm Signed-off-by: berick --- Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm index f73376030e..e04e5fb912 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm @@ -922,7 +922,7 @@ sub axis_authority_browse { for my $f (@{$authority_browse_axis_cache{$axis}->fields}) { push @tags, $f->tag; if ($refs) { - push @tags, $_->tag for @{$f-sub_entries}; + push @tags, $_->tag for @{$f->sub_entries}; } } @@ -1477,7 +1477,7 @@ sub axis_authority_startwith { for my $f (@{$authority_browse_axis_cache{$axis}->fields}) { push @tags, $f->tag; if ($refs) { - push @tags, $_->tag for @{$f-sub_entries}; + push @tags, $_->tag for @{$f->sub_entries}; } } -- 2.11.0