. * * See update_profile.php for documentation */ use Friendica\App; use Friendica\Core\System; use Friendica\DI; require_once 'mod/community.php'; function update_community_content(App $a) { if ($_GET["force"] == 1) { $text = community_content($a, true); } else { $text = ''; } System::htmlUpdateExit($text); }