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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/catalog-strings.inc (-2 / +2 lines)
Lines 2-8 Link Here
2
<!-- catalog-strings.inc -->
2
<!-- catalog-strings.inc -->
3
<script>
3
<script>
4
    /* Some required variables from the template */
4
    /* Some required variables from the template */
5
    var biblionumber = [% biblionumber | html %];
5
    var biblionumber = "[% biblionumber | html %]";
6
    var count = [% count || 0 | html %];
6
    var count = [% count || 0 | html %];
7
    var holdcount = [% holdcount || 0 | html %];
7
    var holdcount = [% holdcount || 0 | html %];
8
    [% SET orders = biblio.orders %]
8
    [% SET orders = biblio.orders %]
Lines 11-17 Link Here
11
    var countorders = [% current.count || 0 | html %];
11
    var countorders = [% current.count || 0 | html %];
12
    var countdeletedorders = [% cancelled.count || 0 | html %];
12
    var countdeletedorders = [% cancelled.count || 0 | html %];
13
    var subscriptionscount = [% biblio.subscriptions.count || 0 | html %];
13
    var subscriptionscount = [% biblio.subscriptions.count || 0 | html %];
14
    var searchid = '[% searchid | html %]';
14
    var searchid = "[% searchid | html %]";
15
15
16
    /* provide Z3950 search points */
16
    /* provide Z3950 search points */
17
    function GetZ3950Terms(){
17
    function GetZ3950Terms(){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +1 lines)
Lines 1667-1673 Link Here
1667
    [% Asset.js("js/modals/place_booking.js") | $raw %]
1667
    [% Asset.js("js/modals/place_booking.js") | $raw %]
1668
    <script>
1668
    <script>
1669
        var browser;
1669
        var browser;
1670
        browser = KOHA.browser('[% searchid | html %]', parseInt(biblionumber, 10));
1670
        browser = KOHA.browser("[% searchid | html %]", parseInt(biblionumber, 10));
1671
        browser.show();
1671
        browser.show();
1672
1672
1673
        [% IF bundlesEnabled %]
1673
        [% IF bundlesEnabled %]
1674
- 

Return to bug 38468