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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc (-3 / +3 lines)
Lines 154-168 $.widget.bridge('uitooltip', $.ui.tooltip); Link Here
154
        return false;
154
        return false;
155
    });
155
    });
156
    $("#ulactioncontainer > ul > li > a.addtoshelf").on("click",function(){
156
    $("#ulactioncontainer > ul > li > a.addtoshelf").on("click",function(){
157
        Dopop('opac-addbybiblionumber.pl?biblionumber=[% biblionumber %]');
157
        Dopop('opac-addbybiblionumber.pl?biblionumber=[% biblionumber | html %]');
158
        return false;
158
        return false;
159
    });
159
    });
160
    $(".addrecord").on("click",function(){
160
    $(".addrecord").on("click",function(){
161
        addRecord('[% biblionumber %]');
161
        addRecord('[% biblionumber | html %]');
162
        return false;
162
        return false;
163
    });
163
    });
164
    $(".cartRemove").on("click",function(){
164
    $(".cartRemove").on("click",function(){
165
        delSingleRecord('[% biblionumber %]');
165
        delSingleRecord('[% biblionumber | html %]');
166
        return false;
166
        return false;
167
    });
167
    });
168
    $(".clearsh").on("click", function(){
168
    $(".clearsh").on("click", function(){
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc (-7 / +7 lines)
Lines 4-10 Link Here
4
        [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
4
        [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
5
            [% IF Koha.Preference( 'RequestOnOpac' ) == 1 %]
5
            [% IF Koha.Preference( 'RequestOnOpac' ) == 1 %]
6
                [% IF ( AllowOnShelfHolds OR ItemsIssued ) %]
6
                [% IF ( AllowOnShelfHolds OR ItemsIssued ) %]
7
                    <li><a class="reserve" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% biblionumber %]">Place hold</a></li>
7
                    <li><a class="reserve" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=[% biblionumber | html %]">Place hold</a></li>
8
                [% END %]
8
                [% END %]
9
            [% END %]
9
            [% END %]
10
        [% END %]
10
        [% END %]
Lines 14-34 Link Here
14
14
15
    [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
15
    [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
16
        [% IF Koha.Preference('ArticleRequests') %]
16
        [% IF Koha.Preference('ArticleRequests') %]
17
            <li><a class="article_request" href="/cgi-bin/koha/opac-request-article.pl?biblionumber=[% biblionumber %]">Request article</a></li>
17
            <li><a class="article_request" href="/cgi-bin/koha/opac-request-article.pl?biblionumber=[% biblionumber | html %]">Request article</a></li>
18
        [% END %]
18
        [% END %]
19
    [% END %]
19
    [% END %]
20
20
21
    [% IF Koha.Preference( 'virtualshelves' ) == 1 %]
21
    [% IF Koha.Preference( 'virtualshelves' ) == 1 %]
22
        [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && loggedinusername ) %]
22
        [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && loggedinusername ) %]
23
            <li><a class="addtoshelf" href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=[% biblionumber %]">Save to your lists</a></li>
23
            <li><a class="addtoshelf" href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=[% biblionumber | html %]">Save to your lists</a></li>
24
        [% END %]
24
        [% END %]
25
    [% END %]
25
    [% END %]
26
26
27
    [% IF Koha.Preference( 'opacbookbag' ) == 1 %]
27
    [% IF Koha.Preference( 'opacbookbag' ) == 1 %]
28
        [% IF ( incart ) %]
28
        [% IF ( incart ) %]
29
            <li><a class="incart cart[% biblionumber %] addrecord" href="#">In your cart</a> <a class="cartRemove cartR[% biblionumber %]" href="#">(remove)</a></li>
29
            <li><a class="incart cart[% biblionumber | html %] addrecord" href="#">In your cart</a> <a class="cartRemove cartR[% biblionumber | html %]" href="#">(remove)</a></li>
30
        [% ELSE %]
30
        [% ELSE %]
31
            <li><a class="addtocart cart[% biblionumber %] addrecord" href="#">Add to your cart</a>  <a style="display:none;" class="cartRemove cartR[% biblionumber %]" href="#">(remove)</a></li>
31
            <li><a class="addtocart cart[% biblionumber | html %] addrecord" href="#">Add to your cart</a>  <a style="display:none;" class="cartRemove cartR[% biblionumber | html %]" href="#">(remove)</a></li>
32
        [% END %]
32
        [% END %]
33
    [% END %]
33
    [% END %]
34
34
Lines 51-57 Link Here
51
                                    <li><a role="menuitem" href="#" data-toggle="modal" data-target="#exportModal_">Dublin Core</a></li>
51
                                    <li><a role="menuitem" href="#" data-toggle="modal" data-target="#exportModal_">Dublin Core</a></li>
52
                                [% ELSE %]
52
                                [% ELSE %]
53
                                <li>
53
                                <li>
54
                                    <a role="menuitem" href="/cgi-bin/koha/opac-export.pl?op=export&amp;bib=[% biblionumber %]&amp;format=[% option %]">
54
                                    <a role="menuitem" href="/cgi-bin/koha/opac-export.pl?op=export&amp;bib=[% biblionumber | html %]&amp;format=[% option %]">
55
                                        [% SWITCH option %]
55
                                        [% SWITCH option %]
56
                                            [% CASE 'bibtex' %]BIBTEX
56
                                            [% CASE 'bibtex' %]BIBTEX
57
                                            [% CASE 'endnote' %]EndNote
57
                                            [% CASE 'endnote' %]EndNote
Lines 107-113 Link Here
107
                <label class="label_dc" for="input-srw">SRW-DC</label>
107
                <label class="label_dc" for="input-srw">SRW-DC</label>
108
                <br>
108
                <br>
109
        <input type="hidden" name="op" value="export">
109
        <input type="hidden" name="op" value="export">
110
        <input type="hidden" name="bib" value="[% biblionumber %]">
110
        <input type="hidden" name="bib" value="[% biblionumber | html %]">
111
        </fieldset>
111
        </fieldset>
112
    </div>
112
    </div>
113
    <div class="modal-footer">
113
    <div class="modal-footer">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-ISBDdetail.tt (-1 / +1 lines)
Lines 19-25 Link Here
19
                    <div id="usermarcdetail">
19
                    <div id="usermarcdetail">
20
                        <div id="catalogue_detail_biblio">
20
                        <div id="catalogue_detail_biblio">
21
                            <div id="views">
21
                            <div id="views">
22
                                <span class="view"><a id="Normalview" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]">Normal view</a></span> <span class="view"><a id="MARCview" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% biblionumber %]">MARC view</a></span> <span class="view current-view"><span id="ISBDview">ISBD view</span></span></div>
22
                                <span class="view"><a id="Normalview" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]">Normal view</a></span> <span class="view"><a id="MARCview" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% biblionumber | html %]">MARC view</a></span> <span class="view current-view"><span id="ISBDview">ISBD view</span></span></div>
23
23
24
                                <div id="isbdcontents">[% ISBD %]</div>
24
                                <div id="isbdcontents">[% ISBD %]</div>
25
25
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-MARCdetail.tt (-6 / +6 lines)
Lines 1-6 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  MARC details for record no. [% biblionumber %]</title>
3
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  MARC details for record no. [% biblionumber | html %]</title>
4
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% BLOCK cssinclude %][% END %]
5
[% BLOCK cssinclude %][% END %]
6
</head>
6
</head>
Lines 20-33 Link Here
20
                        <div id="catalogue_detail_biblio">
20
                        <div id="catalogue_detail_biblio">
21
21
22
                            <div id="views">
22
                            <div id="views">
23
                                <span class="view"><a id="Normalview" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]">Normal view</a></span>
23
                                <span class="view"><a id="Normalview" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]">Normal view</a></span>
24
                                <span class="view current-view"><span id="MARCview">MARC view</span></span>
24
                                <span class="view current-view"><span id="MARCview">MARC view</span></span>
25
                                [% IF ( ISBD ) %]<span class="view"><a id="ISBDview"  href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% biblionumber %]">ISBD view</a></span>[% END %]
25
                                [% IF ( ISBD ) %]<span class="view"><a id="ISBDview"  href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% biblionumber | html %]">ISBD view</a></span>[% END %]
26
                            </div>
26
                            </div>
27
                            <h1 class="title">[% bibliotitle %] (Record no. [% biblionumber %])</h1>
27
                            <h1 class="title">[% bibliotitle %] (Record no. [% biblionumber | html %])</h1>
28
28
29
                            [% IF ( OPACXSLTDetailsDisplay ) %]
29
                            [% IF ( OPACXSLTDetailsDisplay ) %]
30
                                <div id="switchview_div">[ <a id="switchview" href="/cgi-bin/koha/opac-showmarc.pl?id=[% biblionumber %]&amp;viewas=html">view plain</a> ]</div>
30
                                <div id="switchview_div">[ <a id="switchview" href="/cgi-bin/koha/opac-showmarc.pl?id=[% biblionumber | html %]&amp;viewas=html">view plain</a> ]</div>
31
                                <div id="plainmarc"></div>
31
                                <div id="plainmarc"></div>
32
                            [% END %]
32
                            [% END %]
33
33
Lines 190-196 $(document).ready(function(){ Link Here
190
            $(this).text(_("view labeled"));
190
            $(this).text(_("view labeled"));
191
            $("#labeledmarc").hide();
191
            $("#labeledmarc").hide();
192
            if(!loaded){
192
            if(!loaded){
193
                $("#plainmarc").show().html("<div style=\"margin:1em;padding:1em;border:1px solid #EEE;font-size:150%;\"><img src=\"[% interface %]/[% theme %]/images/loading.gif\" /> "+_("Loading")+"...</div>").load("/cgi-bin/koha/opac-showmarc.pl","id=[% biblionumber %]&viewas=html");
193
                $("#plainmarc").show().html("<div style=\"margin:1em;padding:1em;border:1px solid #EEE;font-size:150%;\"><img src=\"[% interface %]/[% theme %]/images/loading.gif\" /> "+_("Loading")+"...</div>").load("/cgi-bin/koha/opac-showmarc.pl","id=[% biblionumber | html %]&viewas=html");
194
                loaded = 1;
194
                loaded = 1;
195
            } else {
195
            } else {
196
                $("#plainmarc").show();
196
                $("#plainmarc").show();
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-alert-subscribe.tt (-5 / +5 lines)
Lines 10-16 Link Here
10
    <div class="main">
10
    <div class="main">
11
        <ul class="breadcrumb">
11
        <ul class="breadcrumb">
12
            <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
12
            <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
13
            <li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]">Details for [% bibliotitle %]</a> <span class="divider">&rsaquo;</span></li>
13
            <li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]">Details for [% bibliotitle %]</a> <span class="divider">&rsaquo;</span></li>
14
            <li><a href="#">[% IF ( typeissue ) %]Subscribe to a subscription alert [% ELSIF ( typeissuecancel ) %] Unsubscribe from a subscription alert [% END %]</a></li>
14
            <li><a href="#">[% IF ( typeissue ) %]Subscribe to a subscription alert [% ELSIF ( typeissuecancel ) %] Unsubscribe from a subscription alert [% END %]</a></li>
15
        </ul>
15
        </ul>
16
16
Lines 27-36 Link Here
27
                                <input type="hidden" name="externalid" value="[% externalid %]">
27
                                <input type="hidden" name="externalid" value="[% externalid %]">
28
                                <input type="hidden" name="alerttype" value="[% alerttype %]">
28
                                <input type="hidden" name="alerttype" value="[% alerttype %]">
29
                                <input type="hidden" name="referer" value="[% referer %]">
29
                                <input type="hidden" name="referer" value="[% referer %]">
30
                                <input type="hidden" name="biblionumber" value="[% biblionumber %]">
30
                                <input type="hidden" name="biblionumber" value="[% biblionumber | html %]">
31
                                <input type="hidden" name="op" value="alert_confirmed">
31
                                <input type="hidden" name="op" value="alert_confirmed">
32
                                <input type="submit" class="btn" value="Yes">
32
                                <input type="submit" class="btn" value="Yes">
33
                                <a class="cancel" href="opac-serial-issues.pl?biblionumber=[% biblionumber %]" >No</a>
33
                                <a class="cancel" href="opac-serial-issues.pl?biblionumber=[% biblionumber | html %]" >No</a>
34
                            </form>
34
                            </form>
35
                        [% END %]
35
                        [% END %]
36
                        [% IF ( typeissuecancel ) %]
36
                        [% IF ( typeissuecancel ) %]
Lines 42-51 Link Here
42
                                <input type="hidden" name="externalid" value="[% externalid %]">
42
                                <input type="hidden" name="externalid" value="[% externalid %]">
43
                                <input type="hidden" name="alerttype" value="[% alerttype %]">
43
                                <input type="hidden" name="alerttype" value="[% alerttype %]">
44
                                <input type="hidden" name="referer" value="[% referer %]">
44
                                <input type="hidden" name="referer" value="[% referer %]">
45
                                <input type="hidden" name="biblionumber" value="[% biblionumber %]">
45
                                <input type="hidden" name="biblionumber" value="[% biblionumber | html %]">
46
                                <input type="hidden" name="op" value="cancel_confirmed">
46
                                <input type="hidden" name="op" value="cancel_confirmed">
47
                                <input type="submit" value="Yes" class="btn">
47
                                <input type="submit" value="Yes" class="btn">
48
                                <a href="opac-serial-issues.pl?biblionumber=[% biblionumber %]" class="cancel">No</a>
48
                                <a href="opac-serial-issues.pl?biblionumber=[% biblionumber | html %]" class="cancel">No</a>
49
                            </form>
49
                            </form>
50
                        [% END %]
50
                        [% END %]
51
                    </div> <!-- / #useralertsubscribe -->
51
                    </div> <!-- / #useralertsubscribe -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-17 / +17 lines)
Lines 56-62 Link Here
56
56
57
                    <div id="bookcover">
57
                    <div id="bookcover">
58
                    [% IF ( OPACLocalCoverImages ) %]
58
                    [% IF ( OPACLocalCoverImages ) %]
59
                        <div title="[% biblionumber |url %]" class="[% biblionumber %]" id="local-thumbnail-preview"></div>
59
                        <div title="[% biblionumber |url %]" class="[% biblionumber | html %]" id="local-thumbnail-preview"></div>
60
                    [% END %]
60
                    [% END %]
61
                    [% IF ( OPACAmazonCoverImages ) %]
61
                    [% IF ( OPACAmazonCoverImages ) %]
62
                        [% IF ( OPACURLOpenInNewWindow ) %]
62
                        [% IF ( OPACURLOpenInNewWindow ) %]
Lines 104-118 Link Here
104
                    [% END %]
104
                    [% END %]
105
                    </div><!-- / #bookcover -->
105
                    </div><!-- / #bookcover -->
106
106
107
                    <abbr class="unapi-id" title="koha:biblionumber:[% biblionumber %]"><!-- unAPI --></abbr>
107
                    <abbr class="unapi-id" title="koha:biblionumber:[% biblionumber | html %]"><!-- unAPI --></abbr>
108
                    [% IF ( ocoins ) # COinS / Openurl %]
108
                    [% IF ( ocoins ) # COinS / Openurl %]
109
                        <span class="Z3988" title="[% ocoins %]"></span>
109
                        <span class="Z3988" title="[% ocoins %]"></span>
110
                    [% END %]
110
                    [% END %]
111
111
112
                    <div id="views">
112
                    <div id="views">
113
                        <span class="view current-view"><span id="Normalview">Normal view</span></span>
113
                        <span class="view current-view"><span id="Normalview">Normal view</span></span>
114
                        <span class="view"><a id="MARCview" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% biblionumber %]">MARC view</a></span>
114
                        <span class="view"><a id="MARCview" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% biblionumber | html %]">MARC view</a></span>
115
                        [% IF ( ISBD ) %]<span class="view"><a id="ISBDview" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% biblionumber %]">ISBD view</a></span>[% END %]
115
                        [% IF ( ISBD ) %]<span class="view"><a id="ISBDview" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=[% biblionumber | html %]">ISBD view</a></span>[% END %]
116
                    </div>
116
                    </div>
117
                    [% IF ( OPACXSLTDetailsDisplay ) %]
117
                    [% IF ( OPACXSLTDetailsDisplay ) %]
118
                        [% XSLTBloc %]
118
                        [% XSLTBloc %]
Lines 408-423 Link Here
408
                            [% END %]
408
                            [% END %]
409
                            [% IF ( TagsInputEnabled ) %]
409
                            [% IF ( TagsInputEnabled ) %]
410
                                [% IF ( loggedinusername ) %]
410
                                [% IF ( loggedinusername ) %]
411
                                    <form id="tagform[% biblionumber %]" method="post" action="/cgi-bin/koha/opac-tags.pl" style="display:none;">
411
                                    <form id="tagform[% biblionumber | html %]" method="post" action="/cgi-bin/koha/opac-tags.pl" style="display:none;">
412
                                        <label for="newtag[% biblionumber %]">New tag(s), separated by a comma:</label>
412
                                        <label for="newtag[% biblionumber | html %]">New tag(s), separated by a comma:</label>
413
                                        <input name="newtag[% biblionumber %]" id="newtag[% biblionumber %]" maxlength="100" type="text"/>
413
                                        <input name="newtag[% biblionumber | html %]" id="newtag[% biblionumber | html %]" maxlength="100" type="text"/>
414
                                        <input name="tagbutton" class="btn btn-small tagbutton" title="[% biblionumber %]" type="submit" value="Add" />
414
                                        <input name="tagbutton" class="btn btn-small tagbutton" title="[% biblionumber | html %]" type="submit" value="Add" />
415
                                        <a class="cancel_tag_add" id="cancel[% biblionumber %]" href="#">(done)</a>
415
                                        <a class="cancel_tag_add" id="cancel[% biblionumber | html %]" href="#">(done)</a>
416
                                    </form>
416
                                    </form>
417
                                    <span id="newtag[% biblionumber %]_status" class="tagstatus" style="display:none;">
417
                                    <span id="newtag[% biblionumber | html %]_status" class="tagstatus" style="display:none;">
418
                                        Tag status here.
418
                                        Tag status here.
419
                                    </span>
419
                                    </span>
420
                                    <a class="tag_add" id="tag_add[% biblionumber %]" href="#">Add tag(s)</a>
420
                                    <a class="tag_add" id="tag_add[% biblionumber | html %]" href="#">Add tag(s)</a>
421
                                [% ELSE %]
421
                                [% ELSE %]
422
                                    <span id="login4tags">
422
                                    <span id="login4tags">
423
                                        [% IF Koha.Preference('casAuthentication') %]
423
                                        [% IF Koha.Preference('casAuthentication') %]
Lines 497-503 Link Here
497
497
498
                                <!-- define some hidden vars for ratings -->
498
                                <!-- define some hidden vars for ratings -->
499
499
500
                                <input  type="hidden" name='biblionumber'  value="[% biblionumber %]" />
500
                                <input  type="hidden" name='biblionumber'  value="[% biblionumber | html %]" />
501
                                <input  type="hidden" name='rating_value' id='rating_value' value="[% my_rating.rating_value %]" />
501
                                <input  type="hidden" name='rating_value' id='rating_value' value="[% my_rating.rating_value %]" />
502
502
503
                                [% UNLESS ( rating_readonly ) %]&nbsp;  <input name="rate_button" type="submit" value="Rate me" />[% END %]&nbsp;
503
                                [% UNLESS ( rating_readonly ) %]&nbsp;  <input name="rate_button" type="submit" value="Rate me" />[% END %]&nbsp;
Lines 651-657 Link Here
651
651
652
                    <div id="holdings">
652
                    <div id="holdings">
653
                        [% IF too_many_items %]
653
                        [% IF too_many_items %]
654
                            <p>This record has many physical items ([% items_count %]). <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]&amp;viewallitems=1">Click here to view them all.</a></p>
654
                            <p>This record has many physical items ([% items_count %]). <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]&amp;viewallitems=1">Click here to view them all.</a></p>
655
                        [% ELSIF ( itemloop.size ) %]
655
                        [% ELSIF ( itemloop.size ) %]
656
                            [% INCLUDE items_table items=itemloop tab="holdings" %]
656
                            [% INCLUDE items_table items=itemloop tab="holdings" %]
657
                            [% IF Koha.Preference('OPACAcquisitionDetails') and Koha.Preference('AcqCreateItem') != 'ordering' and acquisition_details.total_quantity > 0 %]
657
                            [% IF Koha.Preference('OPACAcquisitionDetails') and Koha.Preference('AcqCreateItem') != 'ordering' and acquisition_details.total_quantity > 0 %]
Lines 874-880 Link Here
874
                                    </table>
874
                                    </table>
875
                                [% END # / IF subscription.latestserials %]
875
                                [% END # / IF subscription.latestserials %]
876
                            [% END # / FOREACH subscriptions %]
876
                            [% END # / FOREACH subscriptions %]
877
                            <p class="subscription_moredetails"><a href="opac-serial-issues.pl?biblionumber=[% biblionumber %]">More details</a></p>
877
                            <p class="subscription_moredetails"><a href="opac-serial-issues.pl?biblionumber=[% biblionumber | html %]">More details</a></p>
878
                        </div> <!-- / #subscriptions -->
878
                        </div> <!-- / #subscriptions -->
879
                    [% END # IF subscriptionsnumber %]
879
                    [% END # IF subscriptionsnumber %]
880
880
Lines 958-964 Link Here
958
958
959
                                [% IF ( loggedinusername ) %]
959
                                [% IF ( loggedinusername ) %]
960
                                    [% UNLESS ( loggedincommenter ) %]
960
                                    [% UNLESS ( loggedincommenter ) %]
961
                                       <div id="addcomment"> <a href="#" onclick="Dopop('/cgi-bin/koha/opac-review.pl?biblionumber=[% biblionumber %]'); return false;">
961
                                       <div id="addcomment"> <a href="#" onclick="Dopop('/cgi-bin/koha/opac-review.pl?biblionumber=[% biblionumber | html %]'); return false;">
962
                                            Post your comments on this item.
962
                                            Post your comments on this item.
963
                                        </a></div>
963
                                        </a></div>
964
                                    [% END %]
964
                                    [% END %]
Lines 1030-1036 Link Here
1030
                                <p>Click on an image to view it in the image viewer</p>
1030
                                <p>Click on an image to view it in the image viewer</p>
1031
                                [% FOREACH image IN localimages %]
1031
                                [% FOREACH image IN localimages %]
1032
                                    [% IF image %]
1032
                                    [% IF image %]
1033
                                        <a class="localimage" href="/cgi-bin/koha/opac-imageviewer.pl?biblionumber=[% biblionumber %]&amp;imagenumber=[% image %]"><img alt="" src="/cgi-bin/koha/opac-image.pl?thumbnail=1&amp;imagenumber=[% image %]" /></a>
1033
                                        <a class="localimage" href="/cgi-bin/koha/opac-imageviewer.pl?biblionumber=[% biblionumber | html %]&amp;imagenumber=[% image %]"><img alt="" src="/cgi-bin/koha/opac-image.pl?thumbnail=1&amp;imagenumber=[% image %]" /></a>
1034
                                    [% END %]
1034
                                    [% END %]
1035
                                [% END %]
1035
                                [% END %]
1036
                            </div><!-- / #images -->
1036
                            </div><!-- / #images -->
Lines 1647-1653 Link Here
1647
              $.post("/cgi-bin/koha/opac-ratings-ajax.pl", {
1647
              $.post("/cgi-bin/koha/opac-ratings-ajax.pl", {
1648
                rating_old_value: $("#rating_value").attr("value"),
1648
                rating_old_value: $("#rating_value").attr("value"),
1649
                borrowernumber: "[% borrowernumber %]",
1649
                borrowernumber: "[% borrowernumber %]",
1650
                biblionumber: "[% biblionumber %]",
1650
                biblionumber: "[% biblionumber | html %]",
1651
                rating_value: value,
1651
                rating_value: value,
1652
                auth_error: value
1652
                auth_error: value
1653
              }, function (data) {
1653
              }, function (data) {
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt (-3 / +3 lines)
Lines 16-22 Link Here
16
    <div class="main">
16
    <div class="main">
17
        <ul class="breadcrumb">
17
        <ul class="breadcrumb">
18
            <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
18
            <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
19
            <li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]">Details for [% bibliotitle %]</a> <span class="divider">&rsaquo;</span></li>
19
            <li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]">Details for [% bibliotitle %]</a> <span class="divider">&rsaquo;</span></li>
20
            <li><a href="#">Full subscription history</a></li>
20
            <li><a href="#">Full subscription history</a></li>
21
        </ul>
21
        </ul>
22
22
Lines 48-55 Link Here
48
                        [% UNLESS ( popup ) %]
48
                        [% UNLESS ( popup ) %]
49
                            <h2>Full subscription history for [% bibliotitle %]</h2>
49
                            <h2>Full subscription history for [% bibliotitle %]</h2>
50
                            <div id="views">
50
                            <div id="views">
51
                                <span class="view"><a id="Normalview" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]">Normal view</a></span>
51
                                <span class="view"><a id="Normalview" href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]">Normal view</a></span>
52
                                <span class="view"><a id="Briefhistory" href="/cgi-bin/koha/opac-serial-issues.pl?biblionumber=[% biblionumber %]&amp;selectview=small">Brief history</a></span>
52
                                <span class="view"><a id="Briefhistory" href="/cgi-bin/koha/opac-serial-issues.pl?biblionumber=[% biblionumber | html %]&amp;selectview=small">Brief history</a></span>
53
                                <span class="view"><span id="Fullhistory">Full history</span></span>
53
                                <span class="view"><span id="Fullhistory">Full history</span></span>
54
                            </div>
54
                            </div>
55
                        [% END %]
55
                        [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt (-2 / +1 lines)
Lines 10-16 Link Here
10
    <div class="main">
10
    <div class="main">
11
        <ul class="breadcrumb">
11
        <ul class="breadcrumb">
12
            <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
12
            <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
13
            <li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]">Details for [% bibliotitle %]</a> <span class="divider">&rsaquo;</span></li>
13
            <li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | html %]">Details for [% bibliotitle %]</a> <span class="divider">&rsaquo;</span></li>
14
            <li><a href="#">Issues for a subscription</a></li>
14
            <li><a href="#">Issues for a subscription</a></li>
15
        </ul>
15
        </ul>
16
16
17
- 

Return to bug 18726