diff --git a/r2/r2/controllers/front.py b/r2/r2/controllers/front.py index c4b6a060..4e5a21e6 100644 --- a/r2/r2/controllers/front.py +++ b/r2/r2/controllers/front.py @@ -283,7 +283,7 @@ def GET_editreddit(self, location, num, after, reverse, count): pane = EditorList(editable = c.user_is_admin) elif is_moderator and location == 'banned': pane = BannedList(editable = is_moderator) - elif location == 'contributors' and c.site.type != 'public': + elif is_moderator and location == 'contributors': pane = ContributorList(editable = is_moderator) elif (location == 'stylesheet' and c.site.can_change_stylesheet(c.user) diff --git a/r2/r2/lib/pages/pages.py b/r2/r2/lib/pages/pages.py index 27a3a265..011ed805 100644 --- a/r2/r2/lib/pages/pages.py +++ b/r2/r2/lib/pages/pages.py @@ -1449,7 +1449,7 @@ def container_name(self): return c.user._fullname class ContributorList(UserList): - """Contributor list on a restricted/private reddit.""" + """Contributor list; only viewable by mods.""" type = 'contributor' @property