aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-06-26 06:41:39 -0400
committerCash Costello <cash.costello@gmail.com>2011-06-26 06:41:39 -0400
commitb0b197ee2e73974a8b0c080086945383a863410e (patch)
tree706726a6edcfc7edeb75e7363eadd9a2687d4d62 /pages
parent12a4106d92db1fa3327e0cf32262544181602380 (diff)
downloadelgg-b0b197ee2e73974a8b0c080086945383a863410e.tar.gz
elgg-b0b197ee2e73974a8b0c080086945383a863410e.tar.bz2
Fixes #3614 updated use of elgg_view_entity() throughout core
Diffstat (limited to 'pages')
-rw-r--r--pages/entities/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/entities/index.php b/pages/entities/index.php
index 13aea9e5a..d3b935dc4 100644
--- a/pages/entities/index.php
+++ b/pages/entities/index.php
@@ -36,7 +36,7 @@ if ($entity = get_entity($guid)) {
} else if ($entity instanceof ElggEntity) {
$title = $entity->name;
}
- $area1 = elgg_view_entity($entity, true);
+ $area1 = elgg_view_entity($entity, array('full_view' => true));
if ($shell) {
$body = elgg_view_layout('one_column', array('content' => $area1));
} else {