From: cash Date: Wed, 17 Nov 2010 12:16:18 +0000 (+0000) Subject: Refs #2662 removed html from friends page handlers X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=29846c35e6ddf2f3a3a8cfa2da96470d4bb25325;p=lorea%2Felgg.git Refs #2662 removed html from friends page handlers git-svn-id: http://code.elgg.org/elgg/trunk@7330 36083f99-b078-4883-b0ff-0f9b5a30f544 --- diff --git a/pages/friends/index.php b/pages/friends/index.php index 61169cc85..916f248d9 100644 --- a/pages/friends/index.php +++ b/pages/friends/index.php @@ -17,9 +17,7 @@ $title = elgg_echo("friends:owned", array($owner->name)); $content = elgg_view_title($title); -$content .= "
" - . list_entities_from_relationship('friend', $owner->getGUID(), FALSE, 'user', '', 0, 10, FALSE) - . "
"; +$content .= list_entities_from_relationship('friend', $owner->getGUID(), FALSE, 'user', '', 0, 10, FALSE); $body = elgg_view_layout('one_column_with_sidebar', array('content' => $content)); diff --git a/pages/friends/of.php b/pages/friends/of.php index b5d5829ad..501b0ad2e 100644 --- a/pages/friends/of.php +++ b/pages/friends/of.php @@ -17,9 +17,7 @@ $title = elgg_echo("friends:of:owned", array($owner->name)); $content = elgg_view_title($title); -$content .= "
" - . list_entities_from_relationship('friend', $owner->getGUID(), TRUE, 'user', '', 0, 10, FALSE) - . "
"; +$content .= list_entities_from_relationship('friend', $owner->getGUID(), TRUE, 'user', '', 0, 10, FALSE); $body = elgg_view_layout('one_column_with_sidebar', array('content' => $content));