Line 411 of save_user.cgi reads:
$in{'others'} = !access{'cothers'} if (!$access{'cothers'} !=
1);
This is obviously a double negative. This breaks the
create user in other modules. If access to create others
is not 1 we want to set $in{'others'} to !access{'cothers'},
so the working line is:
$in{'others'} = !access{'cothers'} if ($access{'cothers'} !=
1);
Hope this helps, maybe it's fixed in the next version
already.
Clint
Logged In: YES
user_id=129364
This is fixed in webmin 1.090 .. but thanks anyway!