@@ -, +, @@ Export button) is correct for each one --- tools/export.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- a/tools/export.pl +++ a/tools/export.pl @@ -39,7 +39,12 @@ my $record_type = $query->param("record_type"); my $op = $query->param("op") || ''; my $output_format = $query->param("format") || $query->param("output_format") || 'iso2709'; my $backupdir = C4::Context->config('backupdir'); -my $filename = $query->param("filename") || ( $output_format eq 'csv' ? 'koha.csv' : 'koha.mrc' ); +my $filename; +if ( $record_type eq 'auths' ) { + $filename = $query->param("filename_auth") || ( $output_format eq 'xml' ? 'koha.xml' : 'koha.mrc' ); +} else { + $filename = $query->param("filename") || ( $output_format eq 'csv' ? 'koha.csv' : 'koha.mrc' ); +} $filename =~ s/(\r|\n)//; my $dbh = C4::Context->dbh; --