]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Refs #2662 removed html from friends page handlers
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 17 Nov 2010 12:16:18 +0000 (12:16 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 17 Nov 2010 12:16:18 +0000 (12:16 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7330 36083f99-b078-4883-b0ff-0f9b5a30f544

pages/friends/index.php
pages/friends/of.php

index 61169cc853af396f61afcfc8940fda61983fd34d..916f248d9717803500b1671e87b75299f3885afa 100644 (file)
@@ -17,9 +17,7 @@ $title = elgg_echo("friends:owned", array($owner->name));
 
 $content = elgg_view_title($title);
 
-$content .= "<div class='members_list'>"
-       . list_entities_from_relationship('friend', $owner->getGUID(), FALSE, 'user', '', 0, 10, FALSE)
-       . "</div>";
+$content .= list_entities_from_relationship('friend', $owner->getGUID(), FALSE, 'user', '', 0, 10, FALSE);
 
 $body = elgg_view_layout('one_column_with_sidebar', array('content' => $content));
 
index b5d5829adb18a52ace66c8a1a59ac742329a4b4f..501b0ad2e3f9f3a3968dc85da4527b9717cd1b07 100644 (file)
@@ -17,9 +17,7 @@ $title = elgg_echo("friends:of:owned", array($owner->name));
 
 $content = elgg_view_title($title);
 
-$content .= "<div class='members_list'>"
-       . list_entities_from_relationship('friend', $owner->getGUID(), TRUE, 'user', '', 0, 10, FALSE)
-       . "</div>";
+$content .= list_entities_from_relationship('friend', $owner->getGUID(), TRUE, 'user', '', 0, 10, FALSE);
 
 $body = elgg_view_layout('one_column_with_sidebar', array('content' => $content));