diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-06-20 19:28:20 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-06-20 19:28:20 +0000 |
commit | ff9fc926e60a06777e589d1fad9af1f59c8a2376 (patch) | |
tree | e49f28188ced7e79d9d58f28aaa20ed2e3a51782 /index.php | |
parent | 139964bcc7bc8c0fc4fd708d9df265e067049391 (diff) | |
download | elgg-ff9fc926e60a06777e589d1fad9af1f59c8a2376.tar.gz elgg-ff9fc926e60a06777e589d1fad9af1f59c8a2376.tar.bz2 |
minor tweak to index - show 12 albums
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -39,10 +39,9 @@ set_context('search');
set_input('search_viewtype', 'gallery');
if ($owner instanceof ElggGroup)
- $area2 .= list_entities("object", "album", $owner->guid, 10);
- //$area2 .= list_entities_groups("album", 0, $owner->guid, 10);
+ $area2 .= list_entities("object", "album", $owner->guid, 12);
else
- $area2 .= list_entities("object", "album", $owner->guid, 10);
+ $area2 .= list_entities("object", "album", $owner->guid, 12);
set_context('photos');
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
|