From 4b97550d076c17e3c97a2bc1e18f46d7bc1589b8 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Mon, 10 Jul 2017 02:07:38 +0000 Subject: [PATCH] Bug 14647: (follow-up) Changes to script This patch adds the necessary changes to the script so that the filename extensions works for exporting authorities. To test: 1) Attempt to export with all filetypes for biblios and authorities 2) Confirm the extension for the exported file (after clicking the Export button) is correct for each one Sponsored-by: Catalyst IT --- tools/export.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/export.pl b/tools/export.pl index 0704b57..46a68f0 100755 --- a/tools/export.pl +++ b/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; -- 2.1.4