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

(-)a/catalogue/detail.pl (+2 lines)
Lines 139-144 my $authvalcode_items_itemlost = GetAuthValCode('items.itemlost',$fw); Link Here
139
my $authvalcode_items_damaged  = GetAuthValCode('items.damaged', $fw);
139
my $authvalcode_items_damaged  = GetAuthValCode('items.damaged', $fw);
140
foreach my $item (@items) {
140
foreach my $item (@items) {
141
141
142
    $item->{homebranch}        = GetBranchName($item->{homebranch});
143
142
    # can place holds defaults to yes
144
    # can place holds defaults to yes
143
    $norequests = 0 unless ( ( $item->{'notforloan'} > 0 ) || ( $item->{'itemnotforloan'} > 0 ) );
145
    $norequests = 0 unless ( ( $item->{'notforloan'} > 0 ) || ( $item->{'itemnotforloan'} > 0 ) );
144
146
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tmpl (-3 / +4 lines)
Lines 215-221 function verify_images() { Link Here
215
        <table>
215
        <table>
216
            <tr>
216
            <tr>
217
                <!-- TMPL_IF NAME="item-level_itypes" --><th>Item type</th><!-- /TMPL_IF -->
217
                <!-- TMPL_IF NAME="item-level_itypes" --><th>Item type</th><!-- /TMPL_IF -->
218
                <th>Location</th>
218
                <th>Current Location</th>
219
                <th>Home Library</th>
219
                <!-- TMPL_IF NAME="itemdata_ccode" --><th>Collection</th><!-- /TMPL_IF -->
220
                <!-- TMPL_IF NAME="itemdata_ccode" --><th>Collection</th><!-- /TMPL_IF -->
220
                <th>Call Number</th>
221
                <th>Call Number</th>
221
                <th>Status</th>
222
                <th>Status</th>
Lines 242-248 function verify_images() { Link Here
242
                        <!-- /TMPL_IF --></td>
243
                        <!-- /TMPL_IF --></td>
243
                    <!-- /TMPL_IF -->
244
                    <!-- /TMPL_IF -->
244
                    <td class="location"><!-- TMPL_UNLESS NAME="singlebranchmode" --><!-- TMPL_VAR NAME="branchname" --> <!-- /TMPL_UNLESS --><span class="shelvingloc"><!-- TMPL_VAR NAME="location" --></span> </td>
245
                    <td class="location"><!-- TMPL_UNLESS NAME="singlebranchmode" --><!-- TMPL_VAR NAME="branchname" --> <!-- /TMPL_UNLESS --><span class="shelvingloc"><!-- TMPL_VAR NAME="location" --></span> </td>
245
                    <!-- TMPL_IF NAME="itemdata_ccode" --><td><!-- TMPL_VAR name="ccode" --></td><!-- /TMPL_IF -->
246
                    <td class="homebranch"><!-- TMPL_VAR NAME="homebranch" -->
247
		    <!-- TMPL_IF NAME="itemdata_ccode" --><td><!-- TMPL_VAR name="ccode" --></td><!-- /TMPL_IF -->
246
                    <td class="itemcallnumber"><!-- TMPL_IF NAME="itemcallnumber" --> <!-- TMPL_VAR NAME="itemcallnumber" --><!-- /TMPL_IF --></td>
248
                    <td class="itemcallnumber"><!-- TMPL_IF NAME="itemcallnumber" --> <!-- TMPL_VAR NAME="itemcallnumber" --><!-- /TMPL_IF --></td>
247
                    <td class="status">
249
                    <td class="status">
248
250
249
- 

Return to bug 3262