View | Details | Raw Unified | Return to bug 5979
Collapse All | Expand All

(-)a/C4/Biblio.pm (+1 lines)
Lines 924-929 Return the ISBD view which can be included in opac and intranet Link Here
924
sub GetISBDView {
924
sub GetISBDView {
925
    my ( $biblionumber, $template ) = @_;
925
    my ( $biblionumber, $template ) = @_;
926
    my $record   = GetMarcBiblio($biblionumber, 1);
926
    my $record   = GetMarcBiblio($biblionumber, 1);
927
    $template ||= '';
927
    my $sysprefname = $template eq 'opac' ? 'opacisbd' : 'isbd';
928
    my $sysprefname = $template eq 'opac' ? 'opacisbd' : 'isbd';
928
    return unless defined $record;
929
    return unless defined $record;
929
    my $itemtype = &GetFrameworkCode($biblionumber);
930
    my $itemtype = &GetFrameworkCode($biblionumber);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (-2 / +1 lines)
Lines 162-168 Cataloging: Link Here
162
                  labeled_marc: Labelled MARC form
162
                  labeled_marc: Labelled MARC form
163
                  isbd: ISBD form (see below).
163
                  isbd: ISBD form (see below).
164
        -
164
        -
165
            - "Use the following as the ISBD template:"
165
            - "Use the following as the staff ISBD template:"
166
            - pref: ISBD
166
            - pref: ISBD
167
              type: textarea
167
              type: textarea
168
              class: code
168
              class: code
169
- 

Return to bug 5979