aboutsummaryrefslogtreecommitdiff
path: root/mod/bookmarks/views
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-22 02:19:34 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-22 02:19:34 +0000
commitef2c8f0f0d548779901c7119e47cb46c59ef4fb6 (patch)
treed0f6e743e183da41dc2ab537a661a3d6f5b53866 /mod/bookmarks/views
parentdd5f5518d83e46c13232e0fa82118539aae0faa7 (diff)
downloadelgg-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/bookmarks/views')
-rw-r--r--mod/bookmarks/views/default/object/bookmarks.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/bookmarks/views/default/object/bookmarks.php b/mod/bookmarks/views/default/object/bookmarks.php
index dc1ae795d..11828dc4d 100644
--- a/mod/bookmarks/views/default/object/bookmarks.php
+++ b/mod/bookmarks/views/default/object/bookmarks.php
@@ -40,7 +40,7 @@ if ($comments_count != 0) {
$comments_link = '';
}
-$metadata = elgg_view('layout/objects/list/metadata', array(
+$metadata = elgg_view('navigation/menu/metadata', array(
'entity' => $bookmark,
'handler' => 'bookmarks',
));
@@ -62,7 +62,7 @@ if ($full && !elgg_in_context('gallery')) {
'subtitle' => $subtitle,
'tags' => $tags,
);
- $bookmark_info = elgg_view('layout/objects/list/body', $params);
+ $bookmark_info = elgg_view('object/elements/list_body', $params);
$bookmark_icon = elgg_view_icon('bookmark');
echo <<<HTML
$header
@@ -113,5 +113,5 @@ HTML;
'content' => $content,
);
- echo elgg_view('layout/objects/list/body', $params);
+ echo elgg_view('object/elements/list_body', $params);
} \ No newline at end of file