diff options
Diffstat (limited to 'pages/ownedalbums.php')
-rw-r--r-- | pages/ownedalbums.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/ownedalbums.php b/pages/ownedalbums.php index a28020216..c3dc54d24 100644 --- a/pages/ownedalbums.php +++ b/pages/ownedalbums.php @@ -39,9 +39,9 @@ set_context('search');
set_input('search_viewtype', 'gallery');
if ($owner instanceof ElggGroup)
- $area2 .= list_entities("object", "album", $owner->guid, 12);
+ $area2 .= list_entities("object", "album", $owner->guid, 12, false);
else
- $area2 .= list_entities("object", "album", $owner->guid, 12);
+ $area2 .= list_entities("object", "album", $owner->guid, 12, false);
set_context('photos');
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
|