From 55b0296ccdc56359a03f72b426dfe7fe166c0fb3 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 4ef7e341a7..099cbef8dc 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