Closed (fixed)
Project:
Spaces
Version:
6.x-2.0-beta3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 Sep 2008 at 21:22 UTC
Updated:
1 Aug 2009 at 17:12 UTC
~line 965 within the definition of the controlled groupmask:
'og_selective' => variable_get('spaces_controlled_selective', OG_CLOSED),
This prevents spaces_og_subscription_link() from showing a join button, and also would prevent a user from being able to request access to the group (should they guess the url). og_subscribe returns drupal_access_denied when the group is OG_CLOSED.
Suggested change:
'og_selective' => variable_get('spaces_controlled_selective', OG_MODERATED),
or even this, because the variable spaces_controlled_selective is never set anywhere.
'og_selective' => OG_MODERATED,
Comments
Comment #1
yhahn commentedFixed, closing.