Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 8c30110b

Von Bernd Bleßmann vor fast 4 Jahren hinzugefügt

  • ID 8c30110b9ee3e0c7f21a49df3ae91dd8f31f1caf
  • Vorgänger 65e51d8e
  • Nachfolger 18750a09

PartPicker: Mehrfachauswahl: Option um Anzeige-Begrenzung zu setzen

Diese war vorher fest auf 100 eingestellt. 100 bleibt die Voreinstellung.

Unterschiede anzeigen:

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