projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9406655
)
Limitierung nicht schon bei der Datenbankabfrage.
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 8 May 2007 12:27:52 +0000
(12:27 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 8 May 2007 12:27:52 +0000
(12:27 +0000)
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
1c19562
..
e3ff9cc
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-1667,7
+1667,7
@@
sub _get_customers {
$key = "all_customers" unless ($key);
- my $query = qq|SELECT * FROM customer
LIMIT $main::myconfig{vclimit}
|;
+ my $query = qq|SELECT * FROM customer|;
$self->{$key} = selectall_hashref_query($self, $dbh, $query);
@@
-1681,7
+1681,7
@@
sub _get_vendors {
$key = "all_vendors" unless ($key);
- my $query = qq|SELECT * FROM vendor|;
# LIMIT $main::myconfig{vclimit}|;
+ my $query = qq|SELECT * FROM vendor|;
$self->{$key} = selectall_hashref_query($self, $dbh, $query);