aboutsummaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-16 18:01:34 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-16 18:01:34 +0000
commit68a08f14925e7129cf8302871f8eb70ada822be0 (patch)
tree6db3e9a1e51fef546461826045c4002d887917eb /mod
parentea23afbc8663e412e4f4260810ab60af06e9a1b1 (diff)
downloadelgg-68a08f14925e7129cf8302871f8eb70ada822be0.tar.gz
elgg-68a08f14925e7129cf8302871f8eb70ada822be0.tar.bz2
Fixed numerous occurrances of elgg_view_entity being called incorrectly. Fixes #163
git-svn-id: https://code.elgg.org/elgg/trunk@1449 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r--mod/opendd/viewuuid.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/opendd/viewuuid.php b/mod/opendd/viewuuid.php
index 3f27c950e..8da644c96 100644
--- a/mod/opendd/viewuuid.php
+++ b/mod/opendd/viewuuid.php
@@ -30,7 +30,7 @@
if ($body=="")
{
$entity = opendd_odd_to_elgg($odd);
- $body = elgg_view_entity($entity, "", true);
+ $body = elgg_view_entity($entity, true);
}
$body = elgg_view_layout('one_column',$body);