The community settings have changed in the core. This will respect it. #256

Merged
annando merged 1 commit from 1502-new-community-setting into master 2015-04-06 14:30:47 +02:00

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);
}
}