summaryrefslogtreecommitdiffstats
path: root/templates/show_album.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-06-11 08:24:05 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-06-11 08:24:05 +0000
commit05c406e1f751ece06a7d54bc636275837f9f0169 (patch)
tree4bb73b8d560c1ad0d0ff6c14f2607251280ce79b /templates/show_album.inc.php
parent689517e332c874ac09bb41398602622a1fc36af8 (diff)
downloadampache-05c406e1f751ece06a7d54bc636275837f9f0169.tar.gz
ampache-05c406e1f751ece06a7d54bc636275837f9f0169.tar.bz2
ampache-05c406e1f751ece06a7d54bc636275837f9f0169.zip
added in user profile, did a little work on the preferences and session, something is fishy with session and tmp_playlist stuff will look into it tomorrow
Diffstat (limited to 'templates/show_album.inc.php')
-rw-r--r--templates/show_album.inc.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php
index 72c39ca5..61f2750e 100644
--- a/templates/show_album.inc.php
+++ b/templates/show_album.inc.php
@@ -58,3 +58,9 @@ $title = scrub_out($album->name) . ' -- ' . $album->f_artist;
<?php } ?>
</div>
<?php show_box_bottom(); ?>
+<?php
+ show_box_top(_('Songs'));
+ $object_ids = $album->get_songs();
+ require Config::get('prefix') . '/templates/show_songs.inc.php';
+ show_box_bottom();
+?>