Revision 999cace7
Von Sven Schöling vor etwa 7 Jahren hinzugefügt
SL/DB/Helper/CustomVariables.pm | ||
---|---|---|
380 | 380 |
# easy 2: no module in params? no validity |
381 | 381 |
return [] unless $params{module}; |
382 | 382 |
|
383 |
my @module_configs = grep { $_->module eq $params{module} } @$configs; |
|
383 |
my %wanted_modules = ref $params{module} ? map { $_ => 1 } @{ $params{module} } : ($params{module} => 1); |
|
384 |
my @module_configs = grep { $wanted_modules{$_->module} } @$configs; |
|
384 | 385 |
|
385 | 386 |
return [] unless @module_configs; |
386 | 387 |
|
Auch abrufbar als: Unified diff
CustomVariables: Beim Cachen von überlagerten Invalids können mehrere module auftauchen