[Koha-bugs] [Bug 20447] Add support for MARC holdings records

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Nov 10 15:00:58 CET 2020


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

--- Comment #313 from Joonas Kylmälä <joonas.kylmala at helsinki.fi> ---
Comment on attachment 112570
  --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=112570
Bug 20447: MARC Holdings support

Review of attachment 112570:
 --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=20447&attachment=112570)
-----------------------------------------------------------------

::: cataloguing/addholding.pl
@@ +686,5 @@
> +    author                   => $biblio->author
> +);
> +
> +$template->param(
> +    frameworks => Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] }),

Arrays given as template params needs to be references to the array. This
should be something like 

frameworks => \@frameworks instead (where @frameworks is the result of the
search).

This caused the cataloguing frameworks not to show up in the MARC holdings
editor.

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


More information about the Koha-bugs mailing list