@@ -, +, @@ confirmation - Log in to the OPAC as a user with checkouts. - On the "Your summary" page, fill out and submit the "Note" field for one of your checkouts. - In the confirmation message, confirm that the correct title information is displayed as a link to the bibliographic detail page. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -921,7 +921,7 @@ $(".js_submitnote").click(function(e){ var $self = $(this); - var title = $(this).parent().siblings('.title').html(); + var title = $(this).parent().parent().find('a.title')[0].outerHTML; var $noteinput = $(this).siblings('input[name="note"]').first(); var ajaxData = { --