From ff3b73dfc3be67b579b8cbedd407c921046892ac Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Thu, 9 Feb 2012 06:59:38 -0500 Subject: Fixes #2942 all list pages should have messages when no content now --- pages/friends/index.php | 3 +++ pages/friends/of.php | 3 +++ 2 files changed, 6 insertions(+) (limited to 'pages/friends') 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, -- cgit v1.2.3