View | Details | Raw Unified | Return to bug 20047
Collapse All | Expand All

(-)a/authorities/authorities-home.pl (-3 lines)
Lines 211-219 my $servers = Koha::Z3950Servers->search( Link Here
211
        recordtype => 'authority',
211
        recordtype => 'authority',
212
        servertype => ['zed', 'sru'],
212
        servertype => ['zed', 'sru'],
213
    },
213
    },
214
    {   result_class => 'DBIx::Class::ResultClass::HashRefInflator',
215
        order_by     => ['rank', 'servername'],
216
    },
217
);
214
);
218
215
219
$template->param(
216
$template->param(
(-)a/cataloguing/addbooks.pl (-2 / +6 lines)
Lines 134-140 for my $resultsbr (@resultsbr) { Link Here
134
    };
134
    };
135
}
135
}
136
136
137
my $servers = Koha::Z3950Servers->search();
137
my $servers = Koha::Z3950Servers->search(
138
    {
139
        recordtype => 'biblio',
140
        servertype => ['zed','sru'],
141
    }
142
);
138
143
139
my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
144
my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
140
$template->param(
145
$template->param(
141
- 

Return to bug 20047