Revision 5cc5eed7
Von Sven Schöling vor mehr als 5 Jahren hinzugefügt
SL/Controller/Part.pm | ||
---|---|---|
my $text = escape($::locale->text('No results.'));
|
||
$_[0]->render($text, { layout => 0 });
|
||
} elsif ($count > $max_count) {
|
||
my $text = escpae($::locale->text('Too many results (#1 from #2).', $count, $max_count));
|
||
my $text = escape($::locale->text('Too many results (#1 from #2).', $count, $max_count));
|
||
$_[0]->render($text, { layout => 0 });
|
||
} else {
|
||
my $multi_items = $_[0]->multi_items_models->get;
|
Auch abrufbar als: Unified diff
Part: typo
(cherry picked from commit 8ce71088e51f6bce25c8406ff65f72fad3c15d1a)