From 8aa89da925a9e3a90985a96af17d37d809a093cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Delaune?= Date: Wed, 15 Oct 2014 15:23:35 +0200 Subject: [PATCH] Bug 13085: bugfix to allow call of export.pl in commandline without id_list_file parameter --- tools/export.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/export.pl b/tools/export.pl index 8a5c2a5..97415f8 100755 --- a/tools/export.pl +++ b/tools/export.pl @@ -206,7 +206,7 @@ if ( $op eq "export" ) { my $authtype = $query->param('authtype'); my $filefh; if ($commandline) { - open $filefh,"<", $id_list_file or die "cannot open $id_list_file: $!"; + open $filefh,"<", $id_list_file or die "cannot open $id_list_file: $!" if $id_list_file; } else { $filefh = $query->upload("id_list_file"); } -- 1.9.1