From 69239581a2335955fb8f412fa1dd9b175cd1f038 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 25 Apr 2007 10:09:25 +0000 Subject: [PATCH] =?utf8?q?join()=20braucht=20nat=C3=BCrlich=20mindestens?= =?utf8?q?=20zwei=20Argumente.=20Fix=20f=C3=BCr=20Bug=20626.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- bin/mozilla/dn.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/mozilla/dn.pl b/bin/mozilla/dn.pl index b91456aba..293f07640 100644 --- a/bin/mozilla/dn.pl +++ b/bin/mozilla/dn.pl @@ -932,7 +932,7 @@ sub show_dunning { $column_data{dunning_description} = qq|| . H($ref->{dunning_description}) . qq||; } else { $column_data{dunning_description} = qq| |; @@ -942,7 +942,7 @@ sub show_dunning { $column_data{invnumber} = qq|{id}) . - join(map({ "&${_}=" . E($form->{$_}) } qw(login password callback))) . + join("", map({ "&${_}=" . E($form->{$_}) } qw(login password callback))) . qq|">| . H($ref->{invnumber}) . qq||; map { print "$column_data{$_}\n" } @column_index; -- 2.20.1