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

(-)a/catalogue/ISBDdetail.pl (-1 / +2 lines)
Lines 106-112 $template->param ( Link Here
106
    biblionumber        => $biblionumber,
106
    biblionumber        => $biblionumber,
107
    isbdview            => 1,
107
    isbdview            => 1,
108
    z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber)),
108
    z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber)),
109
    C4::Search::enabled_staff_search_views
109
    ocoins => GetCOinSBiblio($biblionumber),
110
    C4::Search::enabled_staff_search_views,
110
);
111
);
111
112
112
output_html_with_http_headers $query, $cookie, $template->output;
113
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/catalogue/MARCdetail.pl (+2 lines)
Lines 82-87 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
82
    }
82
    }
83
);
83
);
84
84
85
$template->param( ocoins => GetCOinSBiblio($biblionumber) );
86
85
my $record = GetMarcBiblio($biblionumber);
87
my $record = GetMarcBiblio($biblionumber);
86
88
87
if ( not defined $record ) {
89
if ( not defined $record ) {
(-)a/catalogue/detail.pl (+1 lines)
Lines 86-91 if (C4::Context->preference("XSLTDetailsDisplay") ) { Link Here
86
}
86
}
87
87
88
$template->param( 'SpineLabelShowPrintOnBibDetails' => C4::Context->preference("SpineLabelShowPrintOnBibDetails") );
88
$template->param( 'SpineLabelShowPrintOnBibDetails' => C4::Context->preference("SpineLabelShowPrintOnBibDetails") );
89
$template->param( ocoins => GetCOinSBiblio($biblionumber) );
89
90
90
# some useful variables for enhanced content;
91
# some useful variables for enhanced content;
91
# in each case, we're grabbing the first value we find in
92
# in each case, we're grabbing the first value we find in
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt (-1 / +4 lines)
Lines 30-36 Link Here
30
      <div id="yui-main">
30
      <div id="yui-main">
31
	<div class="yui-b">
31
	<div class="yui-b">
32
	[% INCLUDE 'cat-toolbar.inc' %]
32
	[% INCLUDE 'cat-toolbar.inc' %]
33
33
    [% IF ( ocoins ) %]
34
    <!-- COinS / OpenURL -->
35
    <span class="Z3988" title="[% ocoins %]"></span>
36
    [% END %]
34
	  <div id="catalogue_ISBDdetail">
37
	  <div id="catalogue_ISBDdetail">
35
		  [% ISBD %]
38
		  [% ISBD %]
36
	  </div>
39
	  </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt (+4 lines)
Lines 57-62 function Changefwk(FwkList) { Link Here
57
                            [% IF ( frameworkcodeloo.selected ) %]<option value="[% frameworkcodeloo.value %]" selected="selected">[% frameworkcodeloo.frameworktext %]</option>[% ELSE %]<option value="[% frameworkcodeloo.value %]">[% frameworkcodeloo.frameworktext %]</option>[% END %]
57
                            [% IF ( frameworkcodeloo.selected ) %]<option value="[% frameworkcodeloo.value %]" selected="selected">[% frameworkcodeloo.frameworktext %]</option>[% ELSE %]<option value="[% frameworkcodeloo.value %]">[% frameworkcodeloo.frameworktext %]</option>[% END %]
58
                            [% END %]
58
                            [% END %]
59
            </select> </b></p>
59
            </select> </b></p>
60
[% IF ( ocoins ) %]
61
<!-- COinS / OpenURL -->
62
<span class="Z3988" title="[% ocoins %]"></span>
63
[% END %]
60
64
61
<div id="bibliotabs" class="toptabs numbered">
65
<div id="bibliotabs" class="toptabs numbered">
62
	<ul>
66
	<ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +5 lines)
Lines 68-73 function verify_images() { Link Here
68
    <div class="yui-b">
68
    <div class="yui-b">
69
69
70
[% INCLUDE 'cat-toolbar.inc' %]
70
[% INCLUDE 'cat-toolbar.inc' %]
71
    [% IF ( ocoins ) %]
72
        <!-- COinS / OpenURL -->
73
        <span class="Z3988" title="[% ocoins %]"></span>
74
    [% END %]
75
71
    [% IF ( AmazonEnabled ) %]
76
    [% IF ( AmazonEnabled ) %]
72
        [% IF ( XSLTDetailsDisplay ) %]
77
        [% IF ( XSLTDetailsDisplay ) %]
73
            <div class="yui-gc">
78
            <div class="yui-gc">
74
- 

Return to bug 5729