aboutsummaryrefslogtreecommitdiff
path: root/mod/activity/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/activity/index.php')
-rw-r--r--mod/activity/index.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/mod/activity/index.php b/mod/activity/index.php
index 583edf555..57ec5ae88 100644
--- a/mod/activity/index.php
+++ b/mod/activity/index.php
@@ -24,9 +24,12 @@
if (elgg_get_viewtype()=='opendd')
$body = elgg_view('activity/dashboard', array('activity' => activity_get_activity_opendd($limit, $offset, $type, $subtype, page_owner())));
- else
- $body = elgg_view('activity/dashboard', array('activity' => activity_get_activity($limit, $offset, $type, $subtype, page_owner())));
- $body .= elgg_view('activity/offset', array('offset' => $offset, 'add_to_url' => 'own'));
+ else {
+ $activity = activity_get_activity($limit, $offset, $type, $subtype, page_owner());
+ $body = elgg_view('activity/dashboard', array('activity' => $activity));
+ if (count($activity))
+ $body .= elgg_view('activity/offset', array('offset' => $offset, 'add_to_url' => 'own'));
+ }
}
else