diff --git a/useradmin/user-lib.pl b/useradmin/user-lib.pl index 8436c1217..19c36b1d9 100644 --- a/useradmin/user-lib.pl +++ b/useradmin/user-lib.pl @@ -1755,7 +1755,10 @@ local $g; foreach $g (@$groups) { local $members = join(" ", split(/,/, $g->{'members'})); local @cols; - push(@cols, "") if ($anyedit && $g->{'noedit'}); + if ($anyedit && ($g->{'noedit'} || !$access{'gdelete'})) { + # Need an explicity blank first column + push(@cols, ""); + } push(@cols, &group_link($g)); push(@cols, $g->{'gid'}); push(@cols, &ifblank($members));