[Koha-bugs] [Bug 28693] Main heading box not populated in search authorities from bibliographic record

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Jul 9 13:38:09 CEST 2021


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28693

Volkan Sonmez <mvsonmez at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mvsonmez at gmail.com

--- Comment #1 from Volkan Sonmez <mvsonmez at gmail.com> ---
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.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.


More information about the Koha-bugs mailing list