aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-05-17 23:05:41 -0700
committerfriendica <info@friendica.com>2012-05-17 23:05:41 -0700
commit1d157fc747232a158209367e2ebaeadc3f3a56ec (patch)
tree577f7d01f0acabda6555de60424e7e0c7e59101c /mod/settings.php
parent7b0ded3f1478553e1fe93c95c272b99d78f0132b (diff)
downloadvolse-hubzilla-1d157fc747232a158209367e2ebaeadc3f3a56ec.tar.gz
volse-hubzilla-1d157fc747232a158209367e2ebaeadc3f3a56ec.tar.bz2
volse-hubzilla-1d157fc747232a158209367e2ebaeadc3f3a56ec.zip
make it difficult to setup a private forum with no privacy
Diffstat (limited to 'mod/settings.php')
-rw-r--r--mod/settings.php17
1 files changed, 13 insertions, 4 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 23dde3f2a..8c7b1c49c 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -356,10 +356,6 @@ function settings_post(&$a) {
$post_joingroup = (($_POST['post_joingroup'] == 1) ? 1: 0);
$post_profilechange = (($_POST['post_profilechange'] == 1) ? 1: 0);
- if($page_flags == PAGE_PRVGROUP) {
- $hidewall = 1;
- }
-
$notify = 0;
if(x($_POST,'notify1'))
@@ -445,6 +441,19 @@ function settings_post(&$a) {
set_pconfig(local_user(),'system','post_profilechange', $post_profilechange);
+ if($page_flags == PAGE_PRVGROUP) {
+ $hidewall = 1;
+ if((! str_contact_allow) && (! str_group_allow) && (! str_contact_deny) && (! $str_group_deny)) {
+ if($def_gid) {
+ info( t('Private forum has no privacy permissions. Using default privacy group.'). EOL);
+ $str_group_allow = '<' . $def_gid . '>';
+ }
+ else {
+ notice( t('Private forum has no privacy permissions and no default privacy group.') . EOL);
+ }
+ }
+ }
+
$r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `def_gid` = %d, `blockwall` = %d, `hidewall` = %d, `blocktags` = %d, `unkmail` = %d, `cntunkmail` = %d WHERE `uid` = %d LIMIT 1",
dbesc($username),
dbesc($email),