From: berick Date: Thu, 26 May 2011 19:34:07 +0000 (-0400) Subject: Repaired syntax errors in SuperCat.pm X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=55b0296ccdc56359a03f72b426dfe7fe166c0fb3;p=evergreen%2Fequinox.git Repaired syntax errors in SuperCat.pm Signed-off-by: berick --- 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}; } }