@@ -, +, @@ --- opac/opac-downloadshelf.pl | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) --- a/opac/opac-downloadshelf.pl +++ a/opac/opac-downloadshelf.pl @@ -140,7 +140,17 @@ if ( $shelf and $shelf->can_be_viewed( $borrowernumber ) ) { } else { $template->param(fullpage => 1); } - $template->param(csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc', used_for => 'export_records' }) ]); + $template->param( + csv_profiles => [ + Koha::CsvProfiles->search( + { + type => 'marc', + used_for => 'export_records', + staff_only => 0 + } + ) + ] + ); $template->param( shelf => $shelf ); output_html_with_http_headers $query, $cookie, $template->output; } --