Site profile "community" should be invite-only by default

Because if you have your own local/closed community, likely you
don't want random newcomers that drop in, spam and leave dead
accounts.

The Admin can of course always override this by setting the config
"inviteonly" to false either in the config.php or on the website.
This commit is contained in:
Mikael Nordfeldth 2014-03-07 20:57:33 +01:00
parent 5842c59ba7
commit a35bf227fb
1 changed files with 1 additions and 0 deletions

View File

@ -191,6 +191,7 @@ class CommunitySite extends SiteProfileSettings
'site' => array_merge(
$config['site'], array(
'private' => false,
'inviteonly' => true,
'closed' => false
)
),