diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-03-28 18:22:41 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-03-28 18:22:41 +0000 |
commit | 0618c124e147cae2b11a229b21a8d0d03ed9eb61 (patch) | |
tree | 8b59b3b4a6c581f7479ff7ebccbb440e489fae69 | |
parent | 10bec18dce2a29fb2947888547756438d0972cb7 (diff) | |
download | elgg-0618c124e147cae2b11a229b21a8d0d03ed9eb61.tar.gz elgg-0618c124e147cae2b11a229b21a8d0d03ed9eb61.tar.bz2 |
going back to individual entity call since group call is partially broken in elgg core
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -39,7 +39,8 @@ set_context('search');
set_input('search_viewtype', 'gallery');
if ($owner instanceof ElggGroup)
- $area2 .= list_entities_groups("album", 0, $owner->guid, 10);
+ $area2 .= list_entities("object", "album", $owner->guid, 10);
+ //$area2 .= list_entities_groups("album", 0, $owner->guid, 10);
else
$area2 .= list_entities("object", "album", $owner->guid, 10);
|