From b2327986ad5e1d33133524c35704a56eb7242421 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] [PASSED QA] Bug 13085: bugfix to allow call of export.pl in commandline without id_list_file parameter Test plan 1/ run ./tools/export.pl 2/ notice an error like cannot open 0: No such file or directory at ./tools/export.pl line 209. 3/ apply patch 4/ run again 5/ no errors Signed-off-by: Chris Signed-off-by: Katrin Fischer Works as described, adding an additional check. --- 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