From: Bernd Bleßmann Date: Fri, 25 Jun 2021 14:30:25 +0000 (+0200) Subject: S:P:MaterialComponents: delete auf $hash{k}, nicht %hash{k} X-Git-Tag: kivitendo-mebil_0.1-0~9^2~62 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=0bd2b1386aa46b03e553610808d244572d7ac03f;p=kivitendo-erp.git S:P:MaterialComponents: delete auf $hash{k}, nicht %hash{k} Gibt sonst einen Fehler zumindest bei älteren Perl-Versionen. --- diff --git a/SL/Presenter/MaterialComponents.pm b/SL/Presenter/MaterialComponents.pm index 7b2a737e3..30123b719 100644 --- a/SL/Presenter/MaterialComponents.pm +++ b/SL/Presenter/MaterialComponents.pm @@ -212,7 +212,7 @@ sub input_tag { _set_id_attribute(\%attributes, $attributes{name}); - my $class = delete %attributes{class}; + my $class = delete $attributes{class}; my $icon = $attributes{icon} ? icon(delete $attributes{icon}, class => 'prefix') : '';