From: Sven Schöling Date: Tue, 24 Apr 2007 13:36:34 +0000 (+0000) Subject: return muss nach leave_sub stattfinden, sonst wird das ignoriert X-Git-Tag: release-2.4.3^2~461 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=290df7c8b37a75d3796e589c3fa0a58feaa9e92c;p=kivitendo-erp.git return muss nach leave_sub stattfinden, sonst wird das ignoriert --- diff --git a/SL/Form.pm b/SL/Form.pm index 8275807d2..fe7e43e3c 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -2332,7 +2332,7 @@ sub get_history { $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g; $tempArray[$i++] = $hash_ref; } - return \@tempArray and $main::lxdebug->leave_sub() + $main::lxdebug->leave_sub() and return \@tempArray if ($i > 0 && $tempArray[0] ne ""); } $main::lxdebug->leave_sub();