https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20447 --- Comment #313 from Joonas Kylmälä <joonas.kylmala@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.