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=509eb848ebf06e4dc45b3b03f7cea8929b6faab1;p=contrib%2FConifer.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 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}; } }