mirror of
https://github.com/webmin/webmin.git
synced 2026-05-04 22:30:33 +01:00
Group members are space-separated - thanks to Iain Arnell for this fix.
This commit is contained in:
@@ -40,7 +40,7 @@ $group || &error($text{'convert_ewgroup'});
|
||||
if ($in{'conv'} == 3) {
|
||||
# Find secondary members of group
|
||||
@ginfo = getgrnam($in{'group'});
|
||||
@members = split(/,/, $ginfo[3]);
|
||||
@members = split(/\s+/, $ginfo[3]);
|
||||
}
|
||||
|
||||
# Convert matching users
|
||||
|
||||
Reference in New Issue
Block a user