diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-22 02:19:34 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-22 02:19:34 +0000 |
commit | ef2c8f0f0d548779901c7119e47cb46c59ef4fb6 (patch) | |
tree | d0f6e743e183da41dc2ab537a661a3d6f5b53866 /mod/groups/views | |
parent | dd5f5518d83e46c13232e0fa82118539aae0faa7 (diff) | |
download | elgg-ef2c8f0f0d548779901c7119e47cb46c59ef4fb6.tar.gz elgg-ef2c8f0f0d548779901c7119e47cb46c59ef4fb6.tar.bz2 |
Fixes #2950: All files that were calling into layout/* now use the up-to-date locations
git-svn-id: http://code.elgg.org/elgg/trunk@8411 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/views')
-rw-r--r-- | mod/groups/views/default/group/default.php | 2 | ||||
-rw-r--r-- | mod/groups/views/default/object/groupforumtopic.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mod/groups/views/default/group/default.php b/mod/groups/views/default/group/default.php index 63e1e4226..69c1e6c6d 100644 --- a/mod/groups/views/default/group/default.php +++ b/mod/groups/views/default/group/default.php @@ -60,7 +60,7 @@ if ($vars['full']) { 'metadata' => $metadata, 'subtitle' => $group->briefdescription, ); - $list_body = elgg_view('layout/objects/list/body', $params); + $list_body = elgg_view('object/elements/list_body', $params); echo elgg_view_image_block($icon, $list_body); } diff --git a/mod/groups/views/default/object/groupforumtopic.php b/mod/groups/views/default/object/groupforumtopic.php index 6ac6d5eda..20fd6eebb 100644 --- a/mod/groups/views/default/object/groupforumtopic.php +++ b/mod/groups/views/default/object/groupforumtopic.php @@ -41,7 +41,7 @@ if ($num_comments != 0) { )); } -$metadata = elgg_view('layout/objects/list/metadata', array( +$metadata = elgg_view('navigation/menu/metadata', array( 'entity' => $topic, 'handler' => 'discussion', )); @@ -61,7 +61,7 @@ if ($full) { 'subtitle' => $subtitle, 'tags' => $tags, ); - $list_body = elgg_view('layout/objects/list/body', $params); + $list_body = elgg_view('object/elements/list_body', $params); $info = elgg_view_image_block($poster_icon, $list_body); echo <<<HTML @@ -81,7 +81,7 @@ HTML; 'tags' => $tags, 'content' => $excerpt, ); - $list_body = elgg_view('layout/objects/list/body', $params); + $list_body = elgg_view('object/elements/list_body', $params); echo elgg_view_image_block($poster_icon, $list_body); } |