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

--- Comment #313 from Joonas Kylmälä <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to