diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-06-24 11:22:34 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-06-24 11:22:34 +0000 |
commit | 3caf7a0417b44d295b8b794226bd443ccabd6955 (patch) | |
tree | 68c03ea4a79a9062c0c809a594a333972a351112 /viewalbum.php | |
parent | d723ef3f6e5ba2567cb494943ba6aaeaac6c7e22 (diff) | |
download | elgg-3caf7a0417b44d295b8b794226bd443ccabd6955.tar.gz elgg-3caf7a0417b44d295b8b794226bd443ccabd6955.tar.bz2 |
tweak in preparation for better RSS feeds
Diffstat (limited to 'viewalbum.php')
-rw-r--r-- | viewalbum.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/viewalbum.php b/viewalbum.php index 4bdd1a2c7..602963816 100644 --- a/viewalbum.php +++ b/viewalbum.php @@ -45,11 +45,9 @@ true);
}
- // set title and body
- $title = $album->title;
- $area2 = elgg_view_title($title);
- $area2 .= elgg_view_entity($album, true);
+ // create body
+ $area2 = elgg_view_entity($album, true);
$body = elgg_view_layout('two_column_left_sidebar', '', $area2);
- page_draw($title, $body);
+ page_draw($album->title, $body);
?>
\ No newline at end of file |