From 8238183362342f8888fd429b417af5fee41cfbf3 Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Sun, 16 Sep 2018 22:38:29 +0000 Subject: [PATCH] Bug 13406: (follow-up) Add styling classes to authority MARC detail display Signed-off-by: Jane Sandberg --- authorities/detail.pl | 11 ++++------- koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/authorities/detail.pl b/authorities/detail.pl index b2532385d9..ff1cbbe2fc 100755 --- a/authorities/detail.pl +++ b/authorities/detail.pl @@ -139,16 +139,13 @@ sub build_tabs { } if ($#subfields_data>=0) { my %tag_data; - $tag_data{tag}=$field->tag(). ' ' - . C4::Koha::display_marc_indicators($field) - . ' - ' - . $tagslib->{$field->tag()}->{lib}; $tag_data{tag_number} = $tag; $tag_data{tag_desc} = $tagslib->{$field->tag()}->{lib}; $tag_data{subfield} = \@subfields_data; - if ($tag >= 10){ # no indicator for theses tag - $tag_data{ind1} = $field->indicator(1); - $tag_data{ind2} = $field->indicator(2); + my $indicators = C4::Koha::display_marc_indicators($field); + if ( $indicators ) { + $tag_data{ind1} = substr $indicators, 0, 1; + $tag_data{ind2} = substr $indicators, 1, 1; } push (@loop_data, \%tag_data); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt index d121519326..00da448480 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt @@ -62,7 +62,7 @@ [% FOREACH BIG_LOO IN BIG_LOOP %]
[% FOREACH innerloo IN BIG_LOO.innerloop %] - [% IF ( innerloo.tag ) %] + [% IF ( innerloo.tag_number ) %]
[% innerloo.tag_number | html %] -- 2.11.0