@@ -, +, @@ in editor 1) Apply patch 2) Make 3 copies of the default HLD framework 3) Go to a biblio page and create new holding 4) Click Settings in the editor page and notice all 3 frameworks are now listed in the drop-down menu --- cataloguing/addholding.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/cataloguing/addholding.pl +++ a/cataloguing/addholding.pl @@ -686,8 +686,9 @@ $template->param( author => $biblio->author ); +my @frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] }); $template->param( - frameworks => Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] }), + frameworks => \@frameworks, popup => $mode, frameworkcode => $frameworkcode, itemtype => $frameworkcode, --