diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-02-09 06:59:38 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-02-09 06:59:38 -0500 |
commit | ff3b73dfc3be67b579b8cbedd407c921046892ac (patch) | |
tree | df0d6e7c47bde83ca0fdfe8274bb34d64f9c019b /pages | |
parent | a49f4ea74fcaf428ce6b77e05f40902a634cf1f1 (diff) | |
download | elgg-ff3b73dfc3be67b579b8cbedd407c921046892ac.tar.gz elgg-ff3b73dfc3be67b579b8cbedd407c921046892ac.tar.bz2 |
Fixes #2942 all list pages should have messages when no content now
Diffstat (limited to 'pages')
-rw-r--r-- | pages/friends/index.php | 3 | ||||
-rw-r--r-- | pages/friends/of.php | 3 | ||||
-rw-r--r-- | pages/river.php | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/pages/friends/index.php b/pages/friends/index.php index 707402c64..63518a413 100644 --- a/pages/friends/index.php +++ b/pages/friends/index.php @@ -22,6 +22,9 @@ $options = array( 'full_view' => FALSE ); $content = elgg_list_entities_from_relationship($options); +if (!$content) { + $content = elgg_echo('friends:none'); +} $params = array( 'content' => $content, diff --git a/pages/friends/of.php b/pages/friends/of.php index 5bbfa6dff..aa9ee8bee 100644 --- a/pages/friends/of.php +++ b/pages/friends/of.php @@ -22,6 +22,9 @@ $options = array( 'full_view' => FALSE ); $content = elgg_list_entities_from_relationship($options); +if (!$content) { + $content = elgg_echo('friends:none'); +} $params = array( 'content' => $content, diff --git a/pages/river.php b/pages/river.php index 601faf16f..0e1511334 100644 --- a/pages/river.php +++ b/pages/river.php @@ -40,6 +40,9 @@ switch ($page_type) { } $activity = elgg_list_river($options); +if (!$activity) { + $activity = elgg_echo('river:none'); +} $content = elgg_view('core/river/filter', array('selector' => $selector)); |