diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-16 18:01:34 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-16 18:01:34 +0000 |
commit | 68a08f14925e7129cf8302871f8eb70ada822be0 (patch) | |
tree | 6db3e9a1e51fef546461826045c4002d887917eb /views/default/friends/list.php | |
parent | ea23afbc8663e412e4f4260810ab60af06e9a1b1 (diff) | |
download | elgg-68a08f14925e7129cf8302871f8eb70ada822be0.tar.gz elgg-68a08f14925e7129cf8302871f8eb70ada822be0.tar.bz2 |
Fixed numerous occurrances of elgg_view_entity being called incorrectly. Fixes #163
git-svn-id: https://code.elgg.org/elgg/trunk@1449 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/friends/list.php')
-rw-r--r-- | views/default/friends/list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/friends/list.php b/views/default/friends/list.php index 20676a2b7..d45a3f374 100644 --- a/views/default/friends/list.php +++ b/views/default/friends/list.php @@ -18,7 +18,7 @@ foreach($vars['friends'] as $friend) {
- echo elgg_view_entity($friend,"",false);
+ echo elgg_view_entity($friend);
}
|