diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-03-21 17:22:31 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-03-21 17:22:31 +0000 |
commit | abbcdf538949aed8cc91f65bdf1c563506fc8614 (patch) | |
tree | 76927264c3cb4a15eb96f6cd728e0255032e02aa /index.php | |
parent | ac0e60fd90c55a3a7d4f2001eb9e4cce44a5b259 (diff) | |
download | elgg-abbcdf538949aed8cc91f65bdf1c563506fc8614.tar.gz elgg-abbcdf538949aed8cc91f65bdf1c563506fc8614.tar.bz2 |
fixed view album - removed breadcrumbs for now
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -20,17 +20,12 @@ //set the title
$title = sprintf(elgg_echo('album:user'), "$owner->name");
$area2 = elgg_view_title($title);
-
- // temporary code - move to view when cleaned up
- //$area2 .= '<div class="contentWrapper">';
-
+
// Get objects
set_context('search');
set_input('search_viewtype', 'gallery');
$area2 .= list_entities("object", "album", page_owner(), 10);
- //$area2 .= '</div>';
-
set_context('photos');
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
|