From 50424ceaa9800d9ac1cc94f3541e9e0e68484e4c Mon Sep 17 00:00:00 2001 From: spocky Date: Fri, 18 Apr 2008 22:50:44 +0000 Subject: added disc number information on album page --- templates/show_album.inc.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'templates/show_album.inc.php') diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php index adc175a5..96539167 100644 --- a/templates/show_album.inc.php +++ b/templates/show_album.inc.php @@ -23,7 +23,11 @@ $web_path = Config::get('web_path'); $ajax_url = Config::get('ajax_url'); // Title for this album -$title = scrub_out($album->name) . ' (' . $album->year . ') -- ' . $album->f_artist_link; +if ($album->disk) +{ + $disk = "disk. "\">, " . _('Disk') . " " . $album->disk . ""; +} +$title = scrub_out($album->name) . ' (' . $album->year . ')' . $disk .' - ' . $album->f_artist_link; ?>
-- cgit