summaryrefslogtreecommitdiffstats
path: root/browse.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-24 03:15:05 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-24 03:15:05 +0000
commitae70bce26c2f39da93c85a082602d58dcf13652e (patch)
tree0bf530733d44216846ad39f245bc238baf174cee /browse.php
parentcb12b4a8c948d901f6851a7eae032827b423704d (diff)
downloadampache-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.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/browse.php b/browse.php
index 8eb2ea12..d12f672a 100644
--- a/browse.php
+++ b/browse.php
@@ -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&amp;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;