$results_per_page, $offset, $expanded_facet, $branches,
$query_type, $scan
) = @_;
#NOTE: Parameter $branches is not used here !
$branches ||= { map { $_->branchcode => $_->branchname } Koha::Libraries->search };
my $paz = C4::Search::PazPar2->new(C4::Context->config('pazpar2url'));
$paz->init();
if ($format eq 'html') {
# Retrieve data required for the form.
my @branches = map { value => $_->branchcode => label => $_->branchname }, Koha::Libraries->search( {}, { order_by => 'branchname' } );
my @branches = map { value => $_->branchcode, label => $_->branchname }, Koha::Libraries->search( {}, { order_by => 'branchname' } );
my @locations;
foreach my $location (@$location_values) {
push @locations, {
-