diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php
index 89341ec2..fbcc2948 100644
--- a/lib/class/browse.class.php
+++ b/lib/class/browse.class.php
@@ -428,7 +428,7 @@ class Browse {
case 'album':
switch($field) {
case 'name':
- $sql = "`album`.`name`";
+ $sql = "`album`.`name`, `album`.`disk`";
break;
case 'year':
$sql = "`album`.`year`";
@@ -503,44 +503,45 @@ class Browse {
// Format any matches we have so we can show them to the masses
$match = $_SESSION['browse']['filter']['alpha_match'] ? ' (' . $_SESSION['browse']['filter']['alpha_match'] . ')' : '';
+ $class = "box browse_".$_SESSION['browse']['type'];
switch ($_SESSION['browse']['type']) {
case 'song':
- show_box_top(_('Songs') . $match);
+ show_box_top(_('Songs') . $match, $class);
require_once Config::get('prefix') . '/templates/show_songs.inc.php';
show_box_bottom();
break;
case 'album':
- show_box_top(_('Albums') . $match);
+ show_box_top(_('Albums') . $match, $class);
require_once Config::get('prefix') . '/templates/show_albums.inc.php';
show_box_bottom();
break;
case 'genre':
- show_box_top(_('Genres') . $match);
+ show_box_top(_('Genres') . $match, $class);
require_once Config::get('prefix') . '/templates/show_genres.inc.php';
show_box_bottom();
break;
case 'user':
- show_box_top(_('Manage Users') . $match);
+ show_box_top(_('Manage Users') . $match, $class);
require_once Config::get('prefix') . '/templates/show_users.inc.php';
show_box_bottom();
break;
case 'artist':
- show_box_top(_('Artists') . $match);
+ show_box_top(_('Artists') . $match, $class);
require_once Config::get('prefix') . '/templates/show_artists.inc.php';
show_box_bottom();
break;
case 'live_stream':
- show_box_top(_('Radion Stations') . $match);
+ show_box_top(_('Radion Stations') . $match, $class);
require_once Config::get('prefix') . '/templates/show_live_streams.inc.php';
show_box_bottom();
break;
case 'playlist':
- show_box_top(_('Playlists') . $match);
+ show_box_top(_('Playlists') . $match, $class);
require_once Config::get('prefix') . '/templates/show_playlists.inc.php';
show_box_bottom();
break;
case 'catalog':
- show_box_top(_('Catalogs'));
+ show_box_top(_('Catalogs'), $class);
require_once Config::get('prefix') . '/templates/show_catalogs.inc.php';
show_box_bottom();
break;
diff --git a/templates/show_album_row.inc.php b/templates/show_album_row.inc.php
index 807175c7..7d5ffde0 100644
--- a/templates/show_album_row.inc.php
+++ b/templates/show_album_row.inc.php
@@ -24,10 +24,11 @@
id,'random',_('Random'),'random_album_' . $album->id); ?>
-
+ |
-
+ |
f_name_link; ?> |
f_artist_link; ?> |
diff --git a/templates/show_albums.inc.php b/templates/show_albums.inc.php
index d63353e3..fe2af1be 100644
--- a/templates/show_albums.inc.php
+++ b/templates/show_albums.inc.php
@@ -21,13 +21,18 @@
$web_path = Config::get('web_path');
$ajax_url = Config::get('ajax_url');
?>
+
+
diff --git a/templates/show_artist_row.inc.php b/templates/show_artist_row.inc.php
index f394337e..ab5ac563 100644
--- a/templates/show_artist_row.inc.php
+++ b/templates/show_artist_row.inc.php
@@ -26,7 +26,7 @@
f_name_link; ?> |
songs; ?> |
albums; ?> |
-
+ |
diff --git a/templates/show_artists.inc.php b/templates/show_artists.inc.php
index 224d3ce0..f67f02cd 100644
--- a/templates/show_artists.inc.php
+++ b/templates/show_artists.inc.php
@@ -21,13 +21,16 @@
$web_path = Config::get('web_path');
?>
+
-
-
-
- |
-
-
-
-
-
-
- |
+ |
+ |
+ |
+ |
+
diff --git a/templates/show_catalogs.inc.php b/templates/show_catalogs.inc.php
index fe6e3e7d..7a0a48cd 100644
--- a/templates/show_catalogs.inc.php
+++ b/templates/show_catalogs.inc.php
@@ -19,13 +19,16 @@
*/
?>
+
+
diff --git a/templates/show_genres.inc.php b/templates/show_genres.inc.php
index 3008ed4c..f0570100 100644
--- a/templates/show_genres.inc.php
+++ b/templates/show_genres.inc.php
@@ -24,13 +24,15 @@
* Takes an array of genre objects and displays them out
*/
?>
+
+
diff --git a/templates/show_live_streams.inc.php b/templates/show_live_streams.inc.php
index 037d91c1..beb44f10 100644
--- a/templates/show_live_streams.inc.php
+++ b/templates/show_live_streams.inc.php
@@ -21,13 +21,17 @@
$web_path = Config::get('web_path');
?>
+
+
diff --git a/templates/show_playlists.inc.php b/templates/show_playlists.inc.php
index 000c5f28..c2da7945 100644
--- a/templates/show_playlists.inc.php
+++ b/templates/show_playlists.inc.php
@@ -20,14 +20,17 @@
*/
?>
- |