[Koha-bugs] [Bug 28573] Replace authority record with Z39.50/SRU creates new authority record

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Jul 2 14:16:35 CEST 2021


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

Volkan Sonmez <mvsonmez at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mvsonmez at gmail.com
            Version|20.11                       |21.05

--- Comment #2 from Volkan Sonmez <mvsonmez at gmail.com> ---
That is because authid parameter is missing in z3950_auth_search.tt. So
authorities.pl think that this is new authority file but not modification. if
you change

<li><a href="/cgi-bin/koha/authorities/authorities.pl?breedingid=[%
breeding_loo.breedingid | uri %]&authtypecode=[% breeding_loo.heading_code |
uri %]&index=[% index | uri %]" class="chosen" title="Import"><i class="fa
fa-download"></i> Import</a></li>

line with

<li><a href="/cgi-bin/koha/authorities/authorities.pl?breedingid=[%
breeding_loo.breedingid | uri %]&authtypecode=[% breeding_loo.heading_code |
uri %]&authid=[% breeding_loo.authid | uri %]&index=[% index | uri %]"
class="chosen" title="Import"><i class="fa fa-download"></i> Import</a></li>

in 

cataloguing/z3950_auth_search.tt

file it will work.

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


More information about the Koha-bugs mailing list