"Public" is selected by default. It is very easy to miss it and submit a post to the public. Either "Public" should not be selected by default, or there should be a way to set this preference on a 'per group' basis.

CommentFileSizeAuthor
#6 public_checkbox_20051130.patch512 bytesmfredrickson

Comments

moshe weitzman’s picture

Category: bug » feature

i will make this a pref

boris mann’s picture

+1 for this.

JohnG-1’s picture

+1 for pref selected by group owner

jasonwhat’s picture

+1 from me also.

Paul Towlson’s picture

+1 from me too
thanks

mfredrickson’s picture

StatusFileSize
new512 bytes

Simple fix.

Line 1012: $public = 1
becomes $public = 0

mfredrickson’s picture

Status: Active » Needs review
mfredrickson’s picture

Wow. I should read the comments. Will await the pref.

Veggieryan’s picture

just thought i'd chime in for the 4.6.3 users...

around line 958
change

else {
          $public = 1;
        }
        $output .= form_checkbox(t('Public'), 'og_public', 1, $public, t('Show this post to everyone or only to members of the checked selected below.'));
        break;

to

else {
          $public = 0;
        }
        $output .= form_checkbox(t('Public'), 'og_public', 0, $public, t('Show this post to everyone or only to members of the checked selected below.'));
        break;

works like a charm,
also.. there is a new og_forum module on the dev list that creates a private forum for each group.. COOL! requires very latest taxonomy patches though...

yes!
ryan.
thefractal.org

moshe weitzman’s picture

Status: Needs review » Fixed

about to commit.

admin can now choose default for normal users on settings page. when an admin sees the posting form, the checkbox is always visible and defaults to private (i.e. unchecked).

Anonymous’s picture

Status: Fixed » Closed (fixed)