https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35034 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Add a hyperlink of the bib |Add link to the |record to items being |bibliographic records when |merged |they are selected for | |merging Status|Signed Off |Failed QA QA Contact|testopia@bugs.koha-communit |katrin.fischer@bsz-bw.de |y.org | --- Comment #4 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Hi Laura, your patch is not quite correct HTML: + <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% record.biblionumber | uri %]"</a> ([% record.biblionumber | uri %]) * Your opening tag is not closing * We don't have a link text within the a tag The browsers guess kinda well here, which is why this was probably not found in testing. But if you take a look at the source, you can see that there is an error. I have another suggestion on how to implement this: To display the title, we have: [% INCLUDE 'biblio-title.inc' biblio=record.data %] You can just add a parameter to make that linked to the record: [% INCLUDE 'biblio-title.inc' biblio=record.data link = 1 % -- You are receiving this mail because: You are watching all bug changes.