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

(-)a/catalogue/detail.pl (-1 lines)
Lines 91-97 if (C4::Context->preference("XSLTDetailsDisplay") ) { Link Here
91
}
91
}
92
92
93
$template->param( 'SpineLabelShowPrintOnBibDetails' => C4::Context->preference("SpineLabelShowPrintOnBibDetails") );
93
$template->param( 'SpineLabelShowPrintOnBibDetails' => C4::Context->preference("SpineLabelShowPrintOnBibDetails") );
94
$template->param( 'ShowRecallButton' => C4::Context->preference("ShowRecallButton") );
95
$template->param( ocoins => GetCOinSBiblio($record) );
94
$template->param( ocoins => GetCOinSBiblio($record) );
96
95
97
# some useful variables for enhanced content;
96
# some useful variables for enhanced content;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +1 lines)
Lines 686-692 function verify_images() { Link Here
686
                                    </a>
686
                                    </a>
687
                                [% END %]
687
                                [% END %]
688
                                : due [% item.datedue %]
688
                                : due [% item.datedue %]
689
                                [% IF ( ShowRecallButton ) %]
689
                                [% IF ( Koha.Preference('ShowRecallButton') ) %]
690
                                    <input type="button" id="recall_[% item.itemnumber %]" name="recall_[% item.itemnumber %]" value="Recall" onclick="recall_item([% item.itemnumber %]);" />
690
                                    <input type="button" id="recall_[% item.itemnumber %]" name="recall_[% item.itemnumber %]" value="Recall" onclick="recall_item([% item.itemnumber %]);" />
691
                                [% END %]
691
                                [% END %]
692
                            </span>
692
                            </span>
693
- 

Return to bug 8688