From: Moritz Bunkus Date: Thu, 5 Jul 2007 13:40:10 +0000 (+0000) Subject: Ganz böse Verwechselung mit 't' und 'f' bzw. '1' und '0', die zur Verwechslung von... X-Git-Tag: release-2.4.3^2~38 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=69c8088a1b662016b8a4141fa5c6c68cf42a9418;hp=178cd800ea787236e0d974bd97af5328fa457894;p=kivitendo-erp.git Ganz böse Verwechselung mit 't' und 'f' bzw. '1' und '0', die zur Verwechslung von Angeboten und Aufträgen geführt hat. Kam aus rev 2698. --- diff --git a/SL/OE.pm b/SL/OE.pm index b6a261a98..6332a5927 100644 --- a/SL/OE.pm +++ b/SL/OE.pm @@ -393,11 +393,11 @@ sub save { # fill in subject if there is none if ($form->{type} =~ /_order$/) { - $quotation = 't'; + $quotation = 'f'; $form->{subject} = qq|$form->{label} $form->{ordnumber}| unless $form->{subject}; } else { - $quotation = 'f'; + $quotation = 't'; $form->{subject} = qq|$form->{label} $form->{quonumber}| unless $form->{subject}; }