| Summary: | Main heading box not populated in search authorities from bibliographic record | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Bernard <bernard.scaife> |
| Component: | Cataloging | Assignee: | Bugs List <koha-bugs> |
| Status: | RESOLVED DUPLICATE | QA Contact: | Testopia <testopia> |
| Severity: | minor | ||
| Priority: | P5 - low | CC: | fridolin.somers, m.de.rooy, mvsonmez |
| Version: | 20.11 | ||
| Hardware: | All | ||
| OS: | All | ||
| See Also: | https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27737 | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
|
Description
Bernard
2021-07-08 15:00:41 UTC
In
/usr/share/koha/intranet/htdocs/intranet-tmpl/prog/js/cataloging.js
file, replace
var inputs = element.parentNode.parentNode.getElementsByTagName("input");
line with,
var inputs = element.parentNode.parentNode.parentNode.getElementsByTagName("input");
line and in
/usr/share/koha/intranet/htdocs/intranet-tmpl/prog/en/modules/authorities/authorities.tt
file replace,
<a href="#" class="buttonDot tag_editor" onclick="openAuth(this.parentNode.parentNode.getElementsByTagName('input')[1].id,'[%- mv.authtypecode | html -%]','auth'); return false;" tabindex="1" title="Tag editor">Tag editor</a>
line with,
<a href="#" class="buttonDot tag_editor" onclick="openAuth(this.parentNode.parentNode.parentNode.getElementsByTagName('input')[1].id,'[%- mv.authtypecode | html -%]','auth'); return false;" tabindex="1" title="Tag editor">Tag editor</a>
It should work as expected.
Thanks. This has worked for me! Seems linked to Bug 27737 I can't reproduce the bug with Koha 20.11.12 Is it still valid ? |