diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-07 16:05:17 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-07 16:05:17 +0000 |
commit | f2c274eeba80146dfecd6ddc0e1b28b3c6cb3f9d (patch) | |
tree | 8a59b1a27acfd5afb90674c267f69add638b8a92 /mod/activity/all.php | |
parent | 53f56ed753a65b2134e9ef90b57cc384e5b14b51 (diff) | |
download | elgg-f2c274eeba80146dfecd6ddc0e1b28b3c6cb3f9d.tar.gz elgg-f2c274eeba80146dfecd6ddc0e1b28b3c6cb3f9d.tar.bz2 |
small additions to the activity view
git-svn-id: https://code.elgg.org/elgg/trunk@2676 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/activity/all.php')
-rw-r--r-- | mod/activity/all.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/activity/all.php b/mod/activity/all.php index 6cd30e160..cd19a7507 100644 --- a/mod/activity/all.php +++ b/mod/activity/all.php @@ -20,10 +20,12 @@ global $autofeed; $autofeed = true; - if (elgg_get_viewtype()=='opendd') + if (elgg_get_viewtype()=='opendd'){ $body = elgg_view('activity/dashboard', array('activity' => activity_get_activity_opendd($limit, $offset, $type, $subtype))); - else + }else{ $body = elgg_view('activity/dashboard', array('activity' => activity_get_activity($limit, $offset, $type, $subtype))); + $body .= elgg_view('activity/offset', array('offset' => $offset)); + } page_draw(elgg_echo('activity:all'),elgg_view_layout("two_column_left_sidebar", '', $title . $body)); |