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

pull/256/head
Michael Vogel 2015-02-12 17:31:52 +01:00
parent f1b2dad867
commit 6ebd909122
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);
}
}