Merge pull request #256 from annando/1502-new-community-setting

The community settings have changed in the core. This will respect it.
This commit is contained in:
Tobias Diekershoff 2015-04-06 14:30:47 +02:00
commit 362efbc6c8
1 changed files with 17 additions and 13 deletions

View File

@ -199,9 +199,13 @@ function communityhome_home(&$a, &$o){
$o = file_get_contents('home.html');
if (get_config('communityhome','showcommunitystream')===true){
$oldset = get_config('system','no_community_page');
set_config('system','no_community_page', false);
$oldset = get_config('system','community_page_style');
if ($oldset == CP_NO_COMMUNITY_PAGE)
set_config('system','community_page_style', CP_USERS_ON_SERVER);
$o .= community_content($a,1);
set_config('system','no_community_page', $oldset);
if ($oldset == CP_NO_COMMUNITY_PAGE)
set_config('system','community_page_style', $oldset);
}
}