cuny-academic-commons / bp-event-organiser

Allows Event Organiser plugin events to be assigned to BuddyPress groups and generates a group calendar page for each group
GNU General Public License v2.0
3 stars 1 forks source link

fix hide_sitewide switch to check for post_status="publish" rather than "public" #56

Closed modelm closed 7 years ago

modelm commented 7 years ago

I found that new event activities are hidden incorrectly using this plugin because the value of post_status is "publish" rather than "public" when a post is public. When it's private, the value is "private". This patch just switches the values for what's actually there, so that hide_sitewide is only enabled if the event is not public.

r-a-y commented 7 years ago

Thanks for the PR, @modelm!