Currently when you create a Group, the default for things like 'allow comments' are set to Fans Only.
How can I change it so that it is set to Members by default? I checked the database and I can see that it should be a '4' but not sure where in the code to change that at.
Looking at BxGroupsFormAdd.php, I found the 'f' between lines 86 -94 but cannot tell exactly what to change it to.
$aInputPrivacyCustom = array ();
$aInputPrivacyCustom[] = array ('key' => '', 'value' => '----');
$aInputPrivacyCustom[] = array ('key' => 'f', 'value' => _t('_bx_groups_privacy_fans_only'));
$aInputPrivacyCustomPass = array (
'pass' => 'Preg',
'params' => array('/^([0-9f]+)$/'),
);
$aInputPrivacyCustom2 = array (
array('key' => 'f', 'value' => _t('_bx_groups_privacy_fans')),
array('key' => 'a', 'value' => _t('_bx_groups_privacy_admins_only'))