aboutsummaryrefslogtreecommitdiff
path: root/pages/videolist/watch.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2011-11-09 03:10:35 +0100
committerSem <sembrestels@riseup.net>2011-11-09 03:10:35 +0100
commitb0f15fbebe3781626ba6b086d63ed364f6822209 (patch)
treec0b9358920ac777d6a0a5125f5cf528b7ca52643 /pages/videolist/watch.php
parent6b16fa9b322ae12a54c66ba5160cc7547d6e7667 (diff)
downloadelgg-b0f15fbebe3781626ba6b086d63ed364f6822209.tar.gz
elgg-b0f15fbebe3781626ba6b086d63ed364f6822209.tar.bz2
Sidebar.
Diffstat (limited to 'pages/videolist/watch.php')
-rw-r--r--pages/videolist/watch.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/pages/videolist/watch.php b/pages/videolist/watch.php
index fc9bd1a68..3a740f396 100644
--- a/pages/videolist/watch.php
+++ b/pages/videolist/watch.php
@@ -27,10 +27,16 @@ elgg_push_breadcrumb($title);
$content = elgg_view_entity($videolist_item, array('full_view' => true));
$content .= elgg_view_comments($videolist_item);
+$sidebar = elgg_view('videolist/sidebar', array(
+ 'show_comments' => false,
+ 'show_videolist' => true,
+));
+
$body = elgg_view_layout('content', array(
'content' => $content,
'title' => $title,
'filter' => '',
+ 'sidebar' => $sidebar,
));
echo elgg_view_page($title, $body);