diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
commit | ae70bce26c2f39da93c85a082602d58dcf13652e (patch) | |
tree | 0bf530733d44216846ad39f245bc238baf174cee /browse.php | |
parent | cb12b4a8c948d901f6851a7eae032827b423704d (diff) | |
download | ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.gz ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.bz2 ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.zip |
more updates to the theme stuff
Diffstat (limited to 'browse.php')
-rw-r--r-- | browse.php | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -116,10 +116,12 @@ switch($action) { $match = scrub_in($_REQUEST['match']); + require (conf('prefix') . '/templates/show_box_top.inc.php'); show_alphabet_list('song_title','browse.php',$match,'song_title'); /* Detect if it's Browse, and if so don't fill it in */ if ($match == 'Browse') { $match = ''; } show_alphabet_form($match,_('Show Titles Starting With'),"browse.php?action=song_title&match=$match"); + require (conf('prefix') . '/templates/show_box_bottom.inc.php'); $sql = $song->get_sql_from_match($_REQUEST['match']); @@ -144,12 +146,13 @@ switch($action) { break; /* Throw recently added, updated here */ default: - + show_box_top(); /* Show Most Popular artist/album/songs */ show_all_popular(); /* Show Recent Additions */ show_all_recent(); + show_box_bottom(); break; |