From: Moritz Bunkus Date: Mon, 5 Feb 2007 15:38:26 +0000 (+0000) Subject: Beim Umwandeln aus einer Rechnung in einen Auftrag etc die $locale neu anlegen und... X-Git-Tag: release-2.4.2~146 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=ac23cb3bc7c7fd50f5a0b02281f233e971b86d78;p=kivitendo-erp.git Beim Umwandeln aus einer Rechnung in einen Auftrag etc die $locale neu anlegen und die neu benötigten Übersetzungen laden. Fix für Bug 535. --- diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index 6987c7136..3732e77cb 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -1180,6 +1180,10 @@ sub order { $form->{cp_id} *= 1; require "$form->{path}/$form->{script}"; + my $script = $form->{"script"}; + $script =~ s|.*/||; + $script =~ s|.pl$||; + $locale = new Locale($language, $script); map { $form->{"select$_"} = "" } ($form->{vc}, currency);