@@ -, +, @@ detail display --- authorities/detail.pl | 11 ++++------- koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) --- a/authorities/detail.pl +++ a/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); --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt +++ a/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 %] --