diff options
Diffstat (limited to 'views/rss')
-rw-r--r-- | views/rss/object/album.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/rss/object/album.php b/views/rss/object/album.php index a37fdd041..8df98cf7a 100644 --- a/views/rss/object/album.php +++ b/views/rss/object/album.php @@ -42,11 +42,13 @@ if (get_context() == "search" && get_input('search_viewtype') == "gallery") { <?php } + $limit = get_input('limit', 20); $images = elgg_get_entities(array( "type" => "object", "subtype" => "image", "container_guid" => $album->guid, + "limit" => $limit, )); |