We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ran into a problem with closed groups:
<?php $group = elgg_get_page_owner_entity(); if (!$group || !elgg_instanceof($group, 'group')) { register_error(elgg_echo('groups:notfound')); forward(); } elgg_load_library('elgg:groups'); groups_register_profile_buttons($group); $title = $group->name; if (group_gatekeeper(false)) { $composer = ''; if (elgg_is_logged_in()) { $composer = elgg_view('page/elements/composer', array('entity' => $group)); } $db_prefix = elgg_get_config('dbprefix'); $activity = elgg_list_river(array( 'joins' => array("JOIN {$db_prefix}entities e ON e.guid = rv.object_guid"), 'wheres' => array("e.container_guid = $group->guid OR rv.object_guid = $group->guid"), )); if (!$activity) { $activity = elgg_view('output/longtext', array('value' => elgg_echo('group:activity:none'))); } $body = elgg_view_layout('two_sidebar', array( 'title' => $title, 'content' => $composer . $activity, )); echo elgg_view_page($title, $body); } else { $activity = elgg_view('groups/profile/closed_membership'); $body = elgg_view_layout('two_sidebar', array( 'title' => $title, 'content' => $activity, )); echo elgg_view_page($title, $body);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ran into a problem with closed groups:
Fixed it using the following code for pages/groups/wall.php
The text was updated successfully, but these errors were encountered: