From: Thomas Kasulke Date: Wed, 25 Apr 2007 11:31:01 +0000 (+0000) Subject: $form->{rowcount} muß in validate_itmes auf 0 überprüfen, da vorherige Überprüfungen... X-Git-Tag: release-2.4.3^2~450 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=4f3393f4faf9b531d48bb97056468eaf5d0676c8;p=kivitendo-erp.git $form->{rowcount} muß in validate_itmes auf 0 überprüfen, da vorherige Überprüfungen der Zeilen schon die nicht ausgefüllte abschneiden. --- diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index ca6d96bcc..5dde28db1 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -1109,7 +1109,7 @@ sub validate_items { $lxdebug->enter_sub(); # check if items are valid - if ($form->{rowcount} == 1) { + if ($form->{rowcount} == 0) { &update; exit; }