From: Sven Schöling Date: Wed, 9 Dec 2009 14:26:12 +0000 (+0100) Subject: Limit in all_parts ist nicht nur für top100 da. X-Git-Tag: release-2.6.1beta1~72^2~20 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=872f1493c76c54217646a2d2a91efd44df825777;p=kivitendo-erp.git Limit in all_parts ist nicht nur für top100 da. --- diff --git a/SL/IC.pm b/SL/IC.pm index 426fc9fc3..50c1172b0 100644 --- a/SL/IC.pm +++ b/SL/IC.pm @@ -937,7 +937,9 @@ sub all_parts { #my $order_clause = " ORDER BY $form->{sort} $sort_order"; - my $limit_clause = " LIMIT 100" if $form->{top100}; + my $limit_clause; + $limit_clause = " LIMIT 100" if $form->{top100}; + $limit_clause = " LIMIT " . $form->{limit} * 1 if $form->{limit} * 1; #=== joins and complicated filters ========#