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

(-)a/C4/Koha.pm (+1 lines)
Lines 257-262 sub GetItemTypes { Link Here
257
               itemtypes.itemtype,
257
               itemtypes.itemtype,
258
               itemtypes.description,
258
               itemtypes.description,
259
               itemtypes.rentalcharge,
259
               itemtypes.rentalcharge,
260
               itemtypes.gstrate,
260
               itemtypes.notforloan,
261
               itemtypes.notforloan,
261
               itemtypes.imageurl,
262
               itemtypes.imageurl,
262
               itemtypes.summary,
263
               itemtypes.summary,
(-)a/admin/itemtypes.pl (-1 / +1 lines)
Lines 93-98 if ( $op eq 'add_form' ) { Link Here
93
                   itemtypes.itemtype,
93
                   itemtypes.itemtype,
94
                   itemtypes.description,
94
                   itemtypes.description,
95
                   itemtypes.rentalcharge,
95
                   itemtypes.rentalcharge,
96
                   itemtypes.gstrate,
96
                   itemtypes.notforloan,
97
                   itemtypes.notforloan,
97
                   itemtypes.imageurl,
98
                   itemtypes.imageurl,
98
                   itemtypes.summary,
99
                   itemtypes.summary,
Lines 297-303 if ( $op eq 'list' ) { Link Here
297
298
298
        push( @loop, $itemtype );
299
        push( @loop, $itemtype );
299
    }
300
    }
300
301
    $template->param(
301
    $template->param(
302
        loop     => \@loop,
302
        loop     => \@loop,
303
        else     => 1,
303
        else     => 1,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-1 / +1 lines)
Lines 1-4 Link Here
1
[% USE AuthorisedValues %]
1
[% USE AuthorisedValues %]
2
[% USE Koha %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Administration &rsaquo; Item types [% IF ( add_form ) %]&rsaquo;
4
<title>Koha &rsaquo; Administration &rsaquo; Item types [% IF ( add_form ) %]&rsaquo;
4
  [% IF ( itemtype ) %]
5
  [% IF ( itemtype ) %]
5
- 

Return to bug 12993