Part: typo
authorSven Schöling <sven.schoeling@opendynamic.de>
Fri, 16 Aug 2019 18:07:16 +0000 (20:07 +0200)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Fri, 22 Nov 2019 10:50:52 +0000 (11:50 +0100)
(cherry picked from commit 8ce71088e51f6bce25c8406ff65f72fad3c15d1a)

SL/Controller/Part.pm

index ce09aff..f589a71 100644 (file)
@@ -431,7 +431,7 @@ sub action_multi_items_update_result {
     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;