aboutsummaryrefslogtreecommitdiff
path: root/pages/ownedalbums.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-06-05 12:14:47 +0000
committerCash Costello <cash.costello@gmail.com>2011-06-05 12:14:47 +0000
commitea8ea3c610582c8d564c5be38bc91b1987410a6b (patch)
treec09b9970fd7320f74fd4d1815692369dded39bab /pages/ownedalbums.php
parenta1c32cf049031a463b1d7bb49a5c2957924d83a5 (diff)
downloadelgg-ea8ea3c610582c8d564c5be38bc91b1987410a6b.tar.gz
elgg-ea8ea3c610582c8d564c5be38bc91b1987410a6b.tar.bz2
merged in r580 and r581 into trunk
Diffstat (limited to 'pages/ownedalbums.php')
-rw-r--r--pages/ownedalbums.php16
1 files changed, 14 insertions, 2 deletions
diff --git a/pages/ownedalbums.php b/pages/ownedalbums.php
index 67583c65c..9483512c6 100644
--- a/pages/ownedalbums.php
+++ b/pages/ownedalbums.php
@@ -41,9 +41,21 @@ $area2 = elgg_view_title($title);
set_context('search');
set_input('search_viewtype', 'gallery');
if ($owner instanceof ElggGroup) {
- $content .= tp_list_entities("object", "album", 0, $owner->guid, 12, false);
+ $content .= elgg_list_entities(array(
+ "type" => "object",
+ "subtype" => "album",
+ "container_guid" => $owner->guid,
+ "limit" => 12,
+ "full_view" => false,
+));
} else {
- $content .= tp_list_entities("object", "album", $owner->guid, $owner->guid, 12, false);
+ $content .= elgg_list_entities(array(
+ "type" => "object",
+ "subtype" => "album",
+ "container_guid" => $owner->guid,
+ "limit" => 12,
+ "full_view" => false,
+));
}
$area2 = elgg_view('tidypics/content_wrapper', array('title' => $title, 'content' => $content,));