]> git.mxchange.org Git - friendica.git/commitdiff
make it difficult to setup a private forum with no privacy
authorfriendica <info@friendica.com>
Fri, 18 May 2012 06:05:41 +0000 (23:05 -0700)
committerfriendica <info@friendica.com>
Fri, 18 May 2012 06:05:41 +0000 (23:05 -0700)
mod/settings.php

index 23dde3f2a3176f6cbcf3cd89e93ad3fca391415a..8c7b1c49c524b017bff200a6b2e0b6dac6aaeb83 100644 (file)
@@ -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),