Make sure we are using the Library controller for the Library page

This commit is contained in:
Martin Konecny 2012-08-21 11:12:33 -04:00
parent d2eca0faaf
commit 51ebae3de9
5 changed files with 79 additions and 20 deletions

View file

@ -0,0 +1,11 @@
<div id="library_content" class="lib-content ui-widget ui-widget-content block-shadow alpha-block padded" style="z-index:254">
<?php echo $this->render('library/library.phtml') ?>
</div>
<div id="side_playlist" class="pl-content ui-widget ui-widget-content block-shadow omega-block padded">
<?php if ($this->type == 'block') {
echo $this->render('playlist/smart-block.phtml');
} else {
echo $this->render('playlist/playlist.phtml');
} ?>
</div>