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 1650-1656 Link Here
1650
    [% Asset.js("js/modals/place_booking.js") | $raw %]
1650
    [% Asset.js("js/modals/place_booking.js") | $raw %]
1651
    <script>
1651
    <script>
1652
        var browser;
1652
        var browser;
1653
        browser = KOHA.browser('[% searchid | html %]', parseInt(biblionumber, 10));
1653
        browser = KOHA.browser("[% searchid | html %]", parseInt(biblionumber, 10));
1654
        browser.show();
1654
        browser.show();
1655
1655
1656
        [% IF bundlesEnabled %]
1656
        [% IF bundlesEnabled %]
1657
- 

Return to bug 38468