Merge branch 'master' of github.com:webmin/webmin

This commit is contained in:
Jamie Cameron
2025-10-12 18:04:22 -07:00

View File

@ -87,7 +87,7 @@ else {
}
foreach my $oo (split(/\s+/, $in{"others_$i"})) {
my ($n, $v) = split(/=/, $oo, 2);
$v = "\"$v\"" if ($v =~ /\s|,|=/);
$v = "\"$v\"" if ($v =~ /\s|,|=/ && $v !~ /['"]/);
push(@opts, "$n=$v");
}
push(@actions, $in{"action_$i"}."[".join(", ", @opts)."]");