@@ -, +, @@ as appropriate --- authorities/authorities-home.pl | 3 --- cataloguing/addbooks.pl | 7 ++++++- 2 files changed, 6 insertions(+), 4 deletions(-) --- a/authorities/authorities-home.pl +++ a/authorities/authorities-home.pl @@ -211,9 +211,6 @@ my $servers = Koha::Z3950Servers->search( recordtype => 'authority', servertype => ['zed', 'sru'], }, - { result_class => 'DBIx::Class::ResultClass::HashRefInflator', - order_by => ['rank', 'servername'], - }, ); $template->param( --- a/cataloguing/addbooks.pl +++ a/cataloguing/addbooks.pl @@ -134,7 +134,12 @@ for my $resultsbr (@resultsbr) { }; } -my $servers = Koha::Z3950Servers->search(); +my $servers = Koha::Z3950Servers->search( + { + recordtype => 'biblio', + servertype => ['zed','sru'], + } +); my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] }); $template->param( --