diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-12 22:05:11 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-12 22:05:11 +0000 |
commit | 802a01458e0c6dfa230382bebef06da9acf09f70 (patch) | |
tree | f0086fe474431376a737910e9e4e5a0bd1bbf8b3 /templates/show_album.inc.php | |
parent | 987213388ef8e1e00f30ca6c9107e69afc3cbc1f (diff) | |
download | ampache-802a01458e0c6dfa230382bebef06da9acf09f70.tar.gz ampache-802a01458e0c6dfa230382bebef06da9acf09f70.tar.bz2 ampache-802a01458e0c6dfa230382bebef06da9acf09f70.zip |
added year to single album view
Diffstat (limited to 'templates/show_album.inc.php')
-rw-r--r-- | templates/show_album.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php index 61f2750e..4b91fe2f 100644 --- a/templates/show_album.inc.php +++ b/templates/show_album.inc.php @@ -22,7 +22,7 @@ $web_path = Config::get('web_path'); // Title for this album -$title = scrub_out($album->name) . ' -- ' . $album->f_artist; +$title = scrub_out($album->name) . ' (' . $album->year . ') -- ' . $album->f_artist; ?> <?php show_box_top($title); ?> <div style="float:left;display:table-cell;width:140px;"> |