From d338ab57ceafa9e4c66845106950b3adea3f131c Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 4 May 2009 12:49:41 +0000 Subject: [PATCH] =?utf8?q?Link=20zur=20UStVA-Konfiguration=20gefixt:=20Anf?= =?utf8?q?=C3=BChrungszeichen=20innerhalb=20von=20Anf=C3=BChrungszeichen?= =?utf8?q?=20funktionieren=20nicht.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- bin/mozilla/ustva.pl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bin/mozilla/ustva.pl b/bin/mozilla/ustva.pl index 1f69c0ab5..6eaaaba3c 100644 --- a/bin/mozilla/ustva.pl +++ b/bin/mozilla/ustva.pl @@ -142,11 +142,7 @@ sub report { $form->{co_fax} = $form->{fax} unless $form->{co_fax}; $form->{co_url} = $form->{urlx} unless $form->{co_url}; - my $taxnumber_given = ($form->{steuernummer} ne '') - ? qq|$form->{steuernummer}| - : qq|Keine Steuernummer hinterlegt!| - . qq|
|; + my $taxnumber_given = ($form->{steuernummer} ne '') ? $form->{steuernummer} : qq|Keine Steuernummer hinterlegt!
|; my $ustva_vorauswahl = &ustva_vorauswahl(); -- 2.20.1