diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-03 07:17:38 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-03 07:17:38 -0400 |
commit | 21f67d2117ed460c7d8374c9b42348e2eea2b0f4 (patch) | |
tree | cdb6e1088c44a3da99e530f121be4329b34920b9 /mod/groups/lib/groups.php | |
parent | e66bfc0434876327e7993382041db51d21b60f42 (diff) | |
download | elgg-21f67d2117ed460c7d8374c9b42348e2eea2b0f4.tar.gz elgg-21f67d2117ed460c7d8374c9b42348e2eea2b0f4.tar.bz2 |
Fixes #4042 made sure empty content pages had a message about no content
Diffstat (limited to 'mod/groups/lib/groups.php')
-rw-r--r-- | mod/groups/lib/groups.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mod/groups/lib/groups.php b/mod/groups/lib/groups.php index 44143d440..590ba2b35 100644 --- a/mod/groups/lib/groups.php +++ b/mod/groups/lib/groups.php @@ -24,6 +24,9 @@ function groups_handle_all_page() { 'inverse_relationship' => false, 'full_view' => false, )); + if (!$content) { + $content = elgg_echo('groups:none'); + } break; case 'discussion': $content = elgg_list_entities(array( @@ -33,6 +36,9 @@ function groups_handle_all_page() { 'limit' => 40, 'full_view' => false, )); + if (!$content) { + $content = elgg_echo('discussion:none'); + } break; case 'newest': default: @@ -40,6 +46,9 @@ function groups_handle_all_page() { 'type' => 'group', 'full_view' => false, )); + if (!$content) { + $content = elgg_echo('groups:none'); + } break; } @@ -107,6 +116,9 @@ function groups_handle_owned_page() { 'owner_guid' => elgg_get_page_owner_guid(), 'full_view' => false, )); + if (!$content) { + $content = elgg_echo('groups:none'); + } $params = array( 'content' => $content, @@ -137,6 +149,9 @@ function groups_handle_mine_page() { 'inverse_relationship' => false, 'full_view' => false, )); + if (!$content) { + $content = elgg_echo('groups:none'); + } $params = array( 'content' => $content, |