diff options
-rw-r--r-- | pages/ownedalbums.php | 4 | ||||
-rw-r--r-- | pages/tagged.php | 2 | ||||
-rw-r--r-- | pages/world.php | 2 |
3 files changed, 4 insertions, 4 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);
diff --git a/pages/tagged.php b/pages/tagged.php index 0bc562f5b..fb07b392c 100644 --- a/pages/tagged.php +++ b/pages/tagged.php @@ -25,7 +25,7 @@ set_context('search');
set_input('search_viewtype', 'gallery'); // need to force gallery view
- $body .= list_entities_from_relationship('phototag', $guid, false, 'object', 'image');
+ $body .= list_entities_from_relationship('phototag', $guid, false, 'object', 'image', 0, 10, false);
// Set up submenus
if (isloggedin()) {
diff --git a/pages/world.php b/pages/world.php index d88ab1969..514fd058c 100644 --- a/pages/world.php +++ b/pages/world.php @@ -15,7 +15,7 @@ set_context('search');
set_input('search_viewtype', 'gallery');
- $albums_html .= list_entities('object','album', 0, $num_albums);
+ $albums_html .= list_entities('object','album', 0, $num_albums, false);
$area2 .= $albums_html;
|