mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 14:13:29 +00:00
Fix to use named loop variable
This commit is contained in:
@@ -13649,8 +13649,8 @@ if (@clean) {
|
||||
sub get_miniserv_websockets_modules
|
||||
{
|
||||
my @rv;
|
||||
foreach (&get_all_module_infos(), &list_themes()) {
|
||||
push(@rv, $_->{'dir'}) if ($_->{'websockets'});
|
||||
foreach my $i (&get_all_module_infos(), &list_themes()) {
|
||||
push(@rv, $i->{'dir'}) if ($i->{'websockets'});
|
||||
}
|
||||
return @rv;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user