2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-17 05:16:02 +00:00

remove bug for more current perl version

git-svn-id: https://svn.fhem.de/fhem/trunk@4762 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2014-01-28 17:56:56 +00:00
parent f061045902
commit 90e1958b34

View File

@ -5355,7 +5355,7 @@ sub CUL_HM_setAttrIfCh($$$$) {
sub CUL_HM_noDup(@) {#return list with no duplicates
my %all;
return "" if (scalar(@_) == 0);
$all{$_}=0 foreach (grep !/^$/,@_);
$all{$_}=0 foreach (grep {defined $_ && $_ !~ m/^$/} @_);
delete $all{""}; #remove empties if present
return (sort keys %all);
}