Revision 1c3c31c2
Von Bernd Bleßmann vor fast 4 Jahren hinzugefügt
SL/Controller/Part.pm | ||
---|---|---|
423 | 423 |
} |
424 | 424 |
|
425 | 425 |
sub action_multi_items_update_result { |
426 |
my $max_count = 100;
|
|
426 |
my $max_count = $::form->{limit};
|
|
427 | 427 |
|
428 | 428 |
my $count = $_[0]->multi_items_models->count; |
429 | 429 |
|
430 | 430 |
if ($count == 0) { |
431 | 431 |
my $text = escape($::locale->text('No results.')); |
432 | 432 |
$_[0]->render($text, { layout => 0 }); |
433 |
} elsif ($count > $max_count) { |
|
433 |
} elsif ($max_count && $count > $max_count) {
|
|
434 | 434 |
my $text = escape($::locale->text('Too many results (#1 from #2).', $count, $max_count)); |
435 | 435 |
$_[0]->render($text, { layout => 0 }); |
436 | 436 |
} else { |
Auch abrufbar als: Unified diff
PartPicker: Mehrfachauswahl: Option um Anzeige-Begrenzung zu setzen
Diese war vorher fest auf 100 eingestellt. 100 bleibt die Voreinstellung.