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

(-)a/Koha/Illbackends/BLDSS (+1 lines)
Line 0 Link Here
1
Subproject commit 39f98e6f8028f5f152e5028582c94ae683a20f62
(-)a/Koha/Illbackends/koha-ill-freeform (+1 lines)
Line 0 Link Here
1
Subproject commit a52db29936a520c1f84e08b7d2a54b16cba12cc5
(-)a/admin/itemtypes.pl (+2 lines)
Lines 169-176 if ( $op eq 'add_form' ) { Link Here
169
169
170
if ( $op eq 'list' ) {
170
if ( $op eq 'list' ) {
171
    my $itemtypes = Koha::ItemTypes->search;
171
    my $itemtypes = Koha::ItemTypes->search;
172
    my $searchcategory = GetAuthorisedValues("ITEMTYPECAT");
172
    $template->param(
173
    $template->param(
173
        itemtypes => $itemtypes,
174
        itemtypes => $itemtypes,
175
        searchcategory => $searchcategory,
174
        messages  => \@messages,
176
        messages  => \@messages,
175
    );
177
    );
176
}
178
}
(-)a/koha-ill-freeform (+1 lines)
Line 0 Link Here
1
Subproject commit a52db29936a520c1f84e08b7d2a54b16cba12cc5
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-2 / +7 lines)
Lines 364-370 Item types administration Link Here
364
                    [% itemtype.description | html %]
364
                    [% itemtype.description | html %]
365
                [% END %]
365
                [% END %]
366
            </td>
366
            </td>
367
            <td>[% itemtype.searchcategory | html %]</td>
367
            <td>
368
                [% FOREACH cat IN searchcategory %]
369
                    [% IF cat.authorised_value == itemtype.searchcategory %]
370
                        [% cat.lib | html %]
371
                    [% END %]
372
                [% END %]
373
            </td>
368
            <td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
374
            <td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
369
            <td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
375
            <td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
370
            <td>
376
            <td>
371
- 

Return to bug 20238